aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorAngristan <Angristan@users.noreply.github.com>2018-03-23 14:34:01 +0100
committerChocobozzz <me@florianbigard.com>2018-03-23 14:34:01 +0100
commit03ae9d887ae46bef62cfd2b46c1d6b0836bea246 (patch)
treea51020c0638b26c6374d5bdd0ecad28985427bdd /support
parentc7574e8661d62982516ac21c661964b49adbc850 (diff)
downloadPeerTube-03ae9d887ae46bef62cfd2b46c1d6b0836bea246.tar.gz
PeerTube-03ae9d887ae46bef62cfd2b46c1d6b0836bea246.tar.zst
PeerTube-03ae9d887ae46bef62cfd2b46c1d6b0836bea246.zip
Add permissions instructions for the data volume (#387)
* Add permissions instructions for the data volume * Remove useless newline
Diffstat (limited to 'support')
-rw-r--r--support/doc/docker.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/support/doc/docker.md b/support/doc/docker.md
index e0c03a1dc..3d25d06c4 100644
--- a/support/doc/docker.md
+++ b/support/doc/docker.md
@@ -50,6 +50,18 @@ balancer, although any HTTP reverse proxy will work fine. See the example
50Nginx configuration `support/nginx/peertube` file to get an idea of 50Nginx configuration `support/nginx/peertube` file to get an idea of
51recommendations and requirements to run PeerTube the most efficiently. 51recommendations and requirements to run PeerTube the most efficiently.
52 52
53When starting the containers for the first time, you will get permissions errors for the data volume, like this one:
54
55```
56Error: EACCES: permission denied, mkdir '/data/logs'
57```
58
59The peertube user inside the container has a UID and GID of 991 so you have to change the folder's owner, in the case you're using `./data`:
60
61```
62chown -R 991:991 data/
63```
64
53**Important**: note that you'll get the initial `root` user password from the 65**Important**: note that you'll get the initial `root` user password from the
54program output, so check out your logs to find them. 66program output, so check out your logs to find them.
55 67