5 lines
95 B
Bash
Executable file
5 lines
95 B
Bash
Executable file
#/bin/bash/
|
|
|
|
for dir in ./*/ ; do
|
|
(cd "$dir" && echo "[$dir]" && docker compose down);
|
|
done
|