Send user id and group id in Docker bash

This commit is contained in:
Yohann D'ANELLO 2020-09-02 22:51:59 +02:00
parent 1145f75a96
commit 4e1bcd1808
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
if [ -r Dockerfile ]; then
if [ -w /var/run/docker.sock ]; then
docker build -t nk20 .
docker run -it --rm -v "$(pwd):/var/www/note_kfet/" -p 80:8080 nk20 bash
docker run -it -u $(id -u):$(id -g) --rm -v "$(pwd):/var/www/note_kfet/" -p 80:8080 nk20 bash
else
echo "Merci de rejoindre le groupe docker (ou lancez ce script en sudo) afin de pouvoir vous connecter au socket Docker."
fi