Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de> Reviewed-on: https://git.home.domroese.eu/nerdlicht/docker-container/pulls/3
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
|