Improve start-all and pull-all. More services
This commit is contained in:
parent
1fde2cc515
commit
393b2a6053
2 changed files with 4 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
#/bin/bash/
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker compose build);
|
||||
( cd "$dir" && echo "[Building $dir]" && docker compose build --pull );
|
||||
done
|
||||
|
||||
for dir in ./*/ ; do
|
||||
(cd "$dir" && echo "[$dir]" && docker compose pull);
|
||||
( cd "$dir" && echo "[Pulling $dir]" && docker compose pull --ignore-buildable );
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue