From dfd12a10cb5a0a3cfb59c1c54b9e449dc025d77e Mon Sep 17 00:00:00 2001 From: Andrew Stowell Date: Sat, 25 Jul 2026 22:43:19 -0400 Subject: [PATCH] fixed docker pull --- pull-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pull-docker.sh b/pull-docker.sh index 9cfbcad..8ecb7bc 100755 --- a/pull-docker.sh +++ b/pull-docker.sh @@ -46,7 +46,7 @@ function process_docker_pull () { quietDocker=$(docker compose pull --ignore-buildable --ignore-pull-failures) - if docker compose up -d --dry-run | grep -q "Recreate"; then + if docker compose up -d --dry-run 2>&1 | grep -q "Recreate"; then # Only restart services that were already running if ((${#runningServices[@]} > 0)); then echo "restarting the following services: ${runningServices[@]}"