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
2021-03-20 00:24:29 +00:00
(cd "$dir" && echo "[$dir]" && docker-compose down);
2021-01-14 20:52:41 +00:00
done