Merge pull request #3 from vrifox/add-userid-variable

add userid variable
This commit is contained in:
Vri 🌈 2023-05-02 15:12:05 +02:00 committed by GitHub
commit 251c6b6f15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -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

View file

@ -2,7 +2,10 @@ version: "3.7"
services:
web:
user: srm
build: .
build:
context: .
args:
- USER_ID=1000
volumes:
- .:/app
ports: