mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
add userid variable
Add a variable for the userid and use 1000 as default.
This commit is contained in:
parent
2a39a2d454
commit
1a8d823a17
2 changed files with 6 additions and 2 deletions
|
@ -18,7 +18,8 @@ RUN chmod +x docker-entrypoint.sh
|
||||||
RUN mkdir -p /home/srm/tmp
|
RUN mkdir -p /home/srm/tmp
|
||||||
#COPY Gemfile.lock /home/srm/tmp/Gemfile.lock
|
#COPY Gemfile.lock /home/srm/tmp/Gemfile.lock
|
||||||
|
|
||||||
RUN groupadd -r srm && useradd -r -g srm srm
|
ARG USER_ID=1000
|
||||||
|
RUN groupadd srm && useradd -D --uid $USER_ID -g srm srm
|
||||||
RUN chown -R srm:srm /home/srm
|
RUN chown -R srm:srm /home/srm
|
||||||
USER srm
|
USER srm
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,10 @@ version: "3.7"
|
||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
user: srm
|
user: srm
|
||||||
build: .
|
build:
|
||||||
|
context: .
|
||||||
|
args:
|
||||||
|
- USER_ID=1000
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in a new issue