mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 07:43:13 +01:00
add .env variable USER_ID
To harmonize the configuration I added the possibility to change the USER_ID variable in the .env file. Furthermore I appended the example variable, incl. a explanatory comment, to the .env.sample.
This commit is contained in:
parent
c1ac6a2325
commit
8e92e18f79
2 changed files with 2 additions and 1 deletions
|
@ -1,2 +1,3 @@
|
||||||
|
USER_ID=1000 # Set if your user id is different (`id -u`)
|
||||||
APPLICATION_HOST=localhost
|
APPLICATION_HOST=localhost
|
||||||
ESDATA=../esdata
|
ESDATA=../esdata
|
|
@ -5,7 +5,7 @@ services:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
args:
|
args:
|
||||||
- USER_ID=1000
|
- USER_ID=${USER_ID=1000}
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in a new issue