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>
This commit is contained in:
Kpa-clawbot
2026-03-28 18:35:35 -07:00
parent bee705d5d8
commit 8ef321bf70

View File

@@ -5,6 +5,7 @@
services: services:
prod: prod:
build: .
image: corescope:latest image: corescope:latest
container_name: corescope-prod container_name: corescope-prod
restart: unless-stopped restart: unless-stopped
@@ -26,6 +27,7 @@ services:
retries: 3 retries: 3
staging: staging:
build: .
image: corescope:latest image: corescope:latest
container_name: corescope-staging container_name: corescope-staging
restart: unless-stopped restart: unless-stopped