7 lines
97 B
Bash
7 lines
97 B
Bash
|
#/bin/bash/
|
||
|
|
||
|
for dir in ./*/ ; do
|
||
|
(cd "$dir" && echo "[$dir]" && docker-compose up -d);
|
||
|
done
|
||
|
|