improved user managment in client Dockerfile with args

This commit is contained in:
2020-07-14 11:41:10 +02:00
parent 82ae413857
commit 8a6a9de45d
2 changed files with 16 additions and 7 deletions
+4
View File
@@ -25,6 +25,10 @@ only before the first run (may take some time)
```
sudo docker-compose build
```
or with args for groups and users
```
docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) --build-arg UNAME=$(id -g) --build-arg GNAME=$(id -g)
```
### run
then each time you want to launch the app
```