Add all the containers

This commit is contained in:
Sönke Domröse
2025-04-24 14:55:20 +02:00
parent ae4dbd7d87
commit 2e618e910a
18 changed files with 703 additions and 0 deletions

5
startall.sh Normal file
View File

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