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