homeserver/start-all.sh

6 lines
96 B
Bash
Raw Normal View History

2021-01-09 20:40:51 +01:00
#/bin/bash/
2021-01-09 22:08:39 +01:00
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
done