readme + restart script

This commit is contained in:
Sönke Domröse
2025-04-24 15:34:57 +02:00
parent 2e618e910a
commit 266f32b917
4 changed files with 52 additions and 7 deletions

5
restartall.sh Normal file
View File

@@ -0,0 +1,5 @@
for dir in *; do
if [ -d "$dir" ]; then
( cd "$dir" && docker compose down && docker compose pull && docker compose up -d )
fi
done