Files
docker-container/startall.sh
2025-04-30 09:18:58 -05:00

6 lines
94 B
Bash
Executable File

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