Skip to content
Snippets Groups Projects
Commit 03ae9d88 authored by Angristan's avatar Angristan Committed by Chocobozzz
Browse files

Add permissions instructions for the data volume (#387)

* Add permissions instructions for the data volume

* Remove useless newline
parent c7574e86
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment