homeserver/stop-all.sh
2021-01-09 22:08:39 +01:00

6 lines
95 B
Bash
Executable file

#/bin/bash/
for dir in ./*/ ; do
(cd "$dir" && echo "[$dir]" && docker-compose down);
done