Files
openconcho/docker-compose.prod.yml
Offending Commit c9bd2db07d feat(docker): split compose into dev-forward build and prod pull
docker-compose.yml now builds from source (dev-forward: run your local changes);
docker-compose.prod.yml overrides it to pull ghcr latest (build reset via !reset).
Adds make compose-up / compose-up-prod / compose-down. Env, ports, and extra_hosts
stay defined once in the base file; the prod override only swaps build -> image.
2026-06-02 13:50:27 -05:00

12 lines
475 B
YAML

# Production override — pull the published image instead of building from source.
# Layer it on top of docker-compose.yml; it reuses every setting there (env, ports,
# extra_hosts) and only swaps the local build for the latest published image.
#
# make compose-up-prod
# docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d
services:
openconcho:
build: !reset null
image: ghcr.io/offendingcommit/openconcho-web:latest
pull_policy: always