diff --git a/pull-all.sh b/pull-all.sh index 791be2e..98edd29 100755 --- a/pull-all.sh +++ b/pull-all.sh @@ -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 diff --git a/start-all.sh b/start-all.sh index 834eba9..666d0fe 100755 --- a/start-all.sh +++ b/start-all.sh @@ -5,9 +5,9 @@ function up { (cd "$1" && echo "[$1]" && docker compose up -d "${@:2}"); } -up proxy; +up proxy --scale whoami=3; up monitoring; -up nextcloud --scale app=3 --scale web=2; +up nextcloud --scale app=5 --scale web=3; up gitea; up wallabag; up www;