From 6357cd824209fa1e1604b8cffe024d5a2f550933 Mon Sep 17 00:00:00 2001 From: Adam Crawford Date: Sat, 21 Feb 2026 14:21:27 -0500 Subject: [PATCH] fix(deploy): only pull missing docker images during compose up --- .github/workflows/deploy-prod.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-prod.yaml b/.github/workflows/deploy-prod.yaml index cd3a609..e1e8966 100644 --- a/.github/workflows/deploy-prod.yaml +++ b/.github/workflows/deploy-prod.yaml @@ -197,7 +197,7 @@ jobs: run: | cd "${{ secrets.DOCKER_DIR }}" echo "Changes detected. Applying Docker Compose..." - sudo docker compose up -d --remove-orphans + sudo docker compose up -d --pull missing --no-build --remove-orphans - name: Prune unused Docker images if: success()