selfhost/stop-all.sh

7 lines
97 B
Bash
Executable file

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