homeserver/stop-all.sh

6 lines
95 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
2023-01-12 09:03:26 +00:00
(cd "$dir" && echo "[$dir]" && docker compose down);
2021-01-09 21:08:39 +00:00
done