From 0711a7f7ad1dcb8296c5ba4f952113ba1d1499f8 Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Sun, 12 Jul 2026 20:46:32 +0200 Subject: [PATCH] Add pull_policy: always, matching wisp/keep's convention MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missed when the admin-panel work copied wisp's docker-compose.yml pattern. Without it, `docker compose up -d` won't re-pull a new :latest image if a container with the old one is already running — the host's bulk deploy script (docker compose up -d per project, no explicit pull step) would silently leave this project stale on every redeploy. Co-Authored-By: Claude Sonnet 5 --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 78bc41e..bdd2a24 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,6 +2,7 @@ services: app: image: ${IMAGE} restart: unless-stopped + pull_policy: always ports: - "${PORT:-3035}:3035" environment: