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.
23 lines
433 B
YAML
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
|