Files
docker-container/startall.sh
2025-06-18 07:59:00 -05:00

6 lines
117 B
Bash
Executable File

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