1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-11-06 09:19:31 +02:00

Add chown for nobody in the docker run example (#2193)

Co-authored-by: Mickael <me@mvest.tech>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
Mickael V
2022-01-31 12:22:02 +01:00
committed by GitHub
parent 0f96d49dd1
commit 5600d79ff1

View File

@@ -3,8 +3,10 @@
## Docker
The Dockerfile gives a quick and easy way to pull the latest Focalboard server and deploy it locally.
Please note that if you wish to have persistence and mount a volume for the `/data` directory, the host directory must be owned by user `nobody`.
```
sudo chown -R nobody /home/user/focalboard-data
docker build -t focalboard .
docker run -it -v "/home/user/focalboard-data:/data" -p 80:8000 focalboard
```