pg_orrery/docs/docker-compose.yml
Ryan Malloy a78e8eb27c README v0.2.0 rewrite and docs deployment infrastructure
README covers all 57 functions across 9 domains with quick-start
examples, capability matrix, body ID tables, and performance benchmarks.
Links to Starlight docs site for detailed reference.

Adds Docker Compose deployment for docs site behind caddy-docker-proxy
with dev/prod modes and Vite HMR support through reverse proxy.
2026-02-16 07:09:37 -07:00

23 lines
433 B
YAML

services:
docs:
build:
context: .
dockerfile: Dockerfile
target: production
container_name: pg-orbit-docs
restart: unless-stopped
expose:
- "3000"
networks:
- caddy
environment:
- ASTRO_TELEMETRY_DISABLED=1
labels:
caddy: pg-orbit.supported.systems
caddy.reverse_proxy: "{{upstreams 3000}}"
caddy.encode: gzip
networks:
caddy:
external: true