Files
bigbox-docker/power-all-docker.sh

15 lines
218 B
Bash
Executable File

set -xeu
for dir in */; do
cd $dir
if [ -f ./docker-compose.yaml ]; then
docker-compose up -d
fi
#for dir2 in */; do
# cd $dir2
# ls -d $PWD/*
# cd ..
#done
cd ..
done