mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-03 17:26:43 +02:00
Merge pull request #3 from vrifox/add-userid-variable
add userid variable
This commit is contained in:
commit
251c6b6f15
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
|
||||
#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
|
||||
USER srm
|
||||
|
||||
|
|
|
@ -2,7 +2,10 @@ version: "3.7"
|
|||
services:
|
||||
web:
|
||||
user: srm
|
||||
build: .
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
- USER_ID=1000
|
||||
volumes:
|
||||
- .:/app
|
||||
ports:
|
||||
|
|
Loading…
Add table
Reference in a new issue