homeserver/stop-all.sh

6 lines
95 B
Bash
Executable File

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