From 5d69acd718c9430777d28dfdf0e014fe21a5926c Mon Sep 17 00:00:00 2001 From: dlawler489 <104159223@student.swin.edu.au> Date: Mon, 22 Jun 2026 20:29:54 +1000 Subject: [PATCH] compose: pull image for deploy instead of building Dockhand pulls the CI-built image, so drop `build: .` (no build context on the deploy host) and add pull_policy: always. Co-Authored-By: Claude Opus 4.8 --- docker-compose.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index aefc7c8..c1b9fe4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,8 +15,10 @@ services: restart: unless-stopped app: - build: . + # Pulled from the Forgejo registry (built by CI). To build locally instead: + # docker build -t git.plexultra.com/dlawler489/printhive:latest . image: git.plexultra.com/dlawler489/printhive:latest + pull_policy: always depends_on: db: condition: service_healthy