Add script to launch a Docker bash easily

This commit is contained in:
Yohann D'ANELLO 2020-09-02 15:26:36 +02:00
parent c1c0a87971
commit 1145f75a96
1 changed files with 12 additions and 0 deletions

12
shell/docker_bash Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
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
else
echo "Merci de rejoindre le groupe docker (ou lancez ce script en sudo) afin de pouvoir vous connecter au socket Docker."
fi
else
echo "N'exécutez ce fichier que dans la racine de votre projet, afin de pouvoir localiser le fichier Dockerfile."
fi