homeserver/stop-all.sh

6 lines
95 B
Bash
Raw Normal View History

2021-01-09 20:40:51 +01:00
#/bin/bash/
2021-01-09 22:08:39 +01:00
for dir in ./*/ ; do
2023-01-12 10:03:26 +01:00
(cd "$dir" && echo "[$dir]" && docker compose down);
2021-01-09 22:08:39 +01:00
done