Concise verbs: make up (dev build+run), make prod (pull published image), make down (stop regardless of mode), make clean (down + drop local image). Updates all docs and compose-file comment headers to match.
12 lines
464 B
YAML
12 lines
464 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 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
|