mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-04 09:46:43 +02:00
Merge pull request #4 from vrifox/add-userid-variable
Add userid variable
This commit is contained in:
commit
843a8cc637
3 changed files with 3 additions and 2 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
|
|
@ -19,7 +19,7 @@ RUN mkdir -p /home/srm/tmp
|
||||||
#COPY Gemfile.lock /home/srm/tmp/Gemfile.lock
|
#COPY Gemfile.lock /home/srm/tmp/Gemfile.lock
|
||||||
|
|
||||||
ARG USER_ID=1000
|
ARG USER_ID=1000
|
||||||
RUN groupadd srm && useradd -D --uid $USER_ID -g srm srm
|
RUN groupadd srm && useradd --uid $USER_ID -g srm srm
|
||||||
RUN chown -R srm:srm /home/srm
|
RUN chown -R srm:srm /home/srm
|
||||||
USER srm
|
USER srm
|
||||||
|
|
||||||
|
|
|
@ -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…
Add table
Reference in a new issue