mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-21 23:33:14 +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
|
||||
ESDATA=../esdata
|
|
@ -5,7 +5,7 @@ services:
|
|||
build:
|
||||
context: .
|
||||
args:
|
||||
- USER_ID=1000
|
||||
- USER_ID=${USER_ID=1000}
|
||||
volumes:
|
||||
- .:/app
|
||||
ports:
|
||||
|
|
Loading…
Reference in a new issue