feature/allthestuff (#4)

Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de>
Reviewed-on: #4
This commit is contained in:
2025-04-24 15:38:04 +02:00
parent ff43d335ac
commit e09b51b2ff
4 changed files with 52 additions and 7 deletions

View File

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