pg_orrery/docs/docker-compose.yml
Ryan Malloy 3915d1784f Rename pg_orbit to pg_orrery
An existing product called PG Orbit (a mobile PostgreSQL client)
creates a naming conflict. pg_orrery — a database orrery built from
Keplerian parameters and SQL instead of brass gears.

Build system: control file, Makefile, Dockerfile, docker init script.
C source: GUC prefix, PG_FUNCTION_INFO_V1 symbol, header guards,
ereport prefixes, comments across ~30 files including vendored SGP4.
SQL: all 5 install/migration scripts, function name pg_orrery_ephemeris_info.
Tests: 9 SQL suites, 8 expected outputs, standalone DE reader test.
Documentation: CLAUDE.md, README.md, DESIGN.md, Starlight site infra,
36 MDX pages, OG renderer, logo SVG, docker-compose, agent threads.

All 13 regression suites pass. Docs site builds (37 pages).
2026-02-17 13:36:22 -07:00

23 lines
430 B
YAML

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