Scripts to start, stop and pull all.

This commit is contained in:
Florian Zirker 2021-01-14 21:52:41 +01:00
parent 89303197d2
commit 83ce7893ee
3 changed files with 18 additions and 0 deletions

6
pull-all.sh Executable file
View file

@ -0,0 +1,6 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose pull);
done

6
start-all.sh Executable file
View file

@ -0,0 +1,6 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
done

6
stop-all.sh Executable file
View file

@ -0,0 +1,6 @@
#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
done