updated docker-compose-up-all.sh
This commit is contained in:
parent
955ab92e56
commit
e272584db3
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
for dir in */; do
|
for dir in */; do
|
||||||
|
echo "pull $dir"
|
||||||
|
docker-compose -f "$dir/docker-compose.yml" pull
|
||||||
echo "up $dir"
|
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
|
done
|
||||||
|
|
||||||
|
|
Reference in a new issue