Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de> Reviewed-on: #4
6 lines
94 B
Bash
6 lines
94 B
Bash
for dir in *; do
|
|
if [ -d "$dir" ]; then
|
|
( cd "$dir" && docker-compose up -d )
|
|
fi
|
|
done
|