]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add permissions instructions for the data volume (#387)
authorAngristan <Angristan@users.noreply.github.com>
Fri, 23 Mar 2018 13:34:01 +0000 (14:34 +0100)
committerChocobozzz <me@florianbigard.com>
Fri, 23 Mar 2018 13:34:01 +0000 (14:34 +0100)
* Add permissions instructions for the data volume

* Remove useless newline

support/doc/docker.md

index e0c03a1dc253a39378e6666eb6b4c78371bd24e9..3d25d06c46a56c0496a02797628f6a87ad387410 100644 (file)
@@ -50,6 +50,18 @@ balancer, although any HTTP reverse proxy will work fine. See the example
 Nginx configuration `support/nginx/peertube` file to get an idea of
 recommendations and requirements to run PeerTube the most efficiently.
 
+When starting the containers for the first time, you will get permissions errors for the data volume, like this one:
+
+```
+Error: EACCES: permission denied, mkdir '/data/logs'
+```
+
+The 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`:
+
+```
+chown -R 991:991 data/
+```
+
 **Important**: note that you'll get the initial `root` user password from the
 program output, so check out your logs to find them.