From 8ef321bf703f0e615f306af776d319308b67ea39 Mon Sep 17 00:00:00 2001 From: Kpa-clawbot <259247574+Kpa-clawbot@users.noreply.github.com> Date: Sat, 28 Mar 2026 18:35:35 -0700 Subject: [PATCH] fix: add build context to prod and staging services in docker-compose.yml Without build: directive, docker compose tries to pull corescope:latest from Docker Hub instead of building locally. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 388c22f..e839b46 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,6 +5,7 @@ services: prod: + build: . image: corescope:latest container_name: corescope-prod restart: unless-stopped @@ -26,6 +27,7 @@ services: retries: 3 staging: + build: . image: corescope:latest container_name: corescope-staging restart: unless-stopped