selfhost/stop-all.sh

7 lines
96 B
Bash
Raw Normal View History

2021-01-14 20:52:41 +00:00
#/bin/bash/
for dir in ./*/ ; do
2023-01-12 09:10:34 +00:00
(cd "$dir" && echo "[$dir]" && docker compose down);
2021-01-14 20:52:41 +00:00
done