selfhost/stop-all.sh

7 lines
96 B
Bash
Raw Normal View History

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