mirror of https://github.com/pelias/docker.git
Browse Source
By default, all Pelias images now have a user called `pelias` with UID 1000. However, running as a different UID may be best for different people. By setting the default in `.env` and using it in `docker-compose.yml`, we can allow people running Pelias to use whatever non-root user is best for them. Connects https://github.com/pelias/baseimage/pull/2 Connects https://github.com/pelias/pelias/issues/745pull/20/head
Julian Simioni
6 years ago
9 changed files with 58 additions and 4 deletions
@ -1,2 +1,3 @@
|
||||
COMPOSE_PROJECT_NAME=pelias |
||||
DATA_DIR=/tmp/pelias/france |
||||
DOCKER_USER=1000 |
||||
|
@ -1,2 +1,3 @@
|
||||
COMPOSE_PROJECT_NAME=pelias |
||||
DATA_DIR=/tmp/pelias/los-angeles-metro |
||||
DOCKER_USER=1000 |
||||
|
@ -1,2 +1,3 @@
|
||||
COMPOSE_PROJECT_NAME=pelias |
||||
DATA_DIR=/tmp/pelias/portland-metro |
||||
DOCKER_USER=1000 |
||||
|
@ -1,2 +1,3 @@
|
||||
COMPOSE_PROJECT_NAME=pelias_za |
||||
DATA_DIR=/tmp/pelias/pelias_za |
||||
DOCKER_USER=1000 |
||||
|
Loading…
Reference in new issue