Add all the containers (#3)

Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de>
Reviewed-on: #3
This commit is contained in:
2025-04-24 14:56:36 +02:00
parent ae4dbd7d87
commit ff43d335ac
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