6 lines
133 B
Bash
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
|