Browse Source

fix(docs): Add line setting proper permissions in README

There has been some confusion after we switched the Docker images to use
a non-root user. It's now fairly easy for permissions to be set
incorrectly.

This line in the example script should make things right.
es5
Julian Simioni 6 years ago committed by Peter Johnson
parent
commit
1f417353a7
  1. 3
      README.md

3
README.md

@ -252,6 +252,9 @@ set -x
# create directories # create directories
mkdir /code /data mkdir /code /data
# set proper permissions. make sure the user matches your `DOCKER_USER` setting in `.env`
chown 1000:1000 /code /data
# clone repo # clone repo
cd /code cd /code
git clone https://github.com/pelias/docker.git git clone https://github.com/pelias/docker.git

Loading…
Cancel
Save