Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
12 lines
395 B
YAML
12 lines
395 B
YAML
# Deploy overlay: adds back the fixed host port mapping for a real running
|
|
# deployment (e.g. the live instance behind Caddy/sh-caddy), which needs a
|
|
# stable, known host port rather than the ephemeral one the gate resolves at
|
|
# runtime via `docker compose port`.
|
|
#
|
|
# Usage:
|
|
# docker compose -f compose.yaml -f compose.deploy.yaml up -d --build
|
|
services:
|
|
app:
|
|
ports:
|
|
- "4173:3000"
|