homeserver/start-all.sh

6 lines
96 B
Bash
Raw Normal View History

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