Files
docker-container/startall.sh
nerdlicht ff43d335ac Add all the containers (#3)
Co-authored-by: Sönke Domröse <soenke.domroese@lichtblick.de>
Reviewed-on: #3
2025-04-24 14:56:36 +02:00

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