From 784405b8087d50c845bac4f80cf50bf9a67951c1 Mon Sep 17 00:00:00 2001 From: anoracleofra-code Date: Thu, 26 Mar 2026 06:50:08 -0600 Subject: [PATCH] fix: add GHCR image refs to docker-compose and increase health start period Users pulling pre-built images need the image: field. Increased backend health check start_period from 30s to 60s with 5 retries to handle slower startup environments. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index f89693e..8f3fab0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,6 @@ services: backend: + image: ghcr.io/bigbodycobain/shadowbroker-backend:latest build: context: . dockerfile: ./backend/Dockerfile @@ -19,10 +20,10 @@ services: restart: unless-stopped healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8000/api/health"] - interval: 30s + interval: 15s timeout: 10s - retries: 3 - start_period: 30s + retries: 5 + start_period: 60s deploy: resources: limits: @@ -30,6 +31,7 @@ services: cpus: '2' frontend: + image: ghcr.io/bigbodycobain/shadowbroker-frontend:latest build: context: ./frontend container_name: shadowbroker-frontend