docker-compose/all-start.sh

5 lines
144 B
Bash
Executable File

#!/bin/bash
# will skip folders with a leading "_" (indicating not used)
for d in ./[^_]*/ ; do (cd $d && docker compose up -d && cd ..); done