updated docker-compose-up-all.sh

This commit is contained in:
Samuel Philipp 2020-07-03 16:03:25 +02:00
parent 955ab92e56
commit e272584db3
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
#!/bin/bash
for dir in */; do
echo "pull $dir"
docker-compose -f "$dir/docker-compose.yml" pull
echo "up $dir"
docker-compose -f "$dir/docker-compose.yml" up -d
docker-compose -f "$dir/docker-compose.yml" up --build --remove-orphans -d
done