2026-07-10 04:06:42 +01:00
|
|
|
# Production compose (what Coolify deploys): one service, the static site
|
2026-07-10 04:11:12 +01:00
|
|
|
# built by the multi-stage Dockerfile and served by hardened nginx on 80
|
|
|
|
|
# (the port reverse proxies expect by default). No host `ports:` mapping:
|
|
|
|
|
# the platform's proxy (Traefik on Coolify) routes straight to the exposed
|
|
|
|
|
# container port. For local development use docker-compose.dev.yml instead.
|
2026-07-10 03:52:49 +01:00
|
|
|
services:
|
2026-07-10 04:06:42 +01:00
|
|
|
web:
|
2026-07-10 03:52:49 +01:00
|
|
|
build: .
|
2026-07-10 04:06:42 +01:00
|
|
|
restart: unless-stopped
|
|
|
|
|
expose:
|
2026-07-10 04:11:12 +01:00
|
|
|
- '80'
|