Files
docker-container/startall.sh
2025-04-24 14:55:20 +02:00

6 lines
133 B
Bash

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