Added shell scripts

This commit is contained in:
2026-01-10 18:08:45 +02:00
parent 34da9dcfa4
commit 8b6b484a00
4 changed files with 49 additions and 0 deletions

12
shutdown-all-docker.sh Executable file
View File

@@ -0,0 +1,12 @@
set -xeu
for dir in */; do
cd $dir
docker-compose down
#for dir2 in */; do
# cd $dir2
# ls -d $PWD/*
# cd ..
#done
cd ..
done