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