Add pull_policy: always, matching wisp/keep's convention
All checks were successful
Docker / build-and-push (push) Successful in 1m51s

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 <noreply@anthropic.com>
This commit is contained in:
Fredrik Johansson
2026-07-12 20:46:32 +02:00
parent edfa12b8e9
commit 0711a7f7ad

View File

@@ -2,6 +2,7 @@ services:
app: app:
image: ${IMAGE} image: ${IMAGE}
restart: unless-stopped restart: unless-stopped
pull_policy: always
ports: ports:
- "${PORT:-3035}:3035" - "${PORT:-3035}:3035"
environment: environment: