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