5 lines
143 B
Bash
Executable File
5 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# will skip folders with a leading "_" (indicating not used)
|
|
for d in ./[^_]*/ ; do (cd $d && docker compose down && cd ..); done
|