mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-23 02:56:08 +02:00
165743e92d
docker compose pull was skipping with "No image to be pulled" because the build: sections made Compose treat local builds as authoritative. Moved build config to docker-compose.build.yml for developers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
298 B
YAML
12 lines
298 B
YAML
# Developer override — build images from source instead of pulling from GHCR.
|
|
# Usage: docker compose -f docker-compose.yml -f docker-compose.build.yml build
|
|
services:
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: ./backend/Dockerfile
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|