Docker Compose Installation
Clone And Configure
git clone <your-democracy-routes-repository-url>cd "Democracy Routes"cp .env.example .envnode scripts/validate-env.jsEdit .env before starting production. At minimum, set the public URLs and secrets required by authentication, sessions, internal APIs, and any providers you enable.
Start The Stack
docker compose up -d --buildIf your host has only legacy Compose:
docker-compose up -d --buildThe bundled reverse proxy listens on PROXY_HTTP_PORT, defaulting to 8088.
http://localhost:8088/Check Status
docker compose psor:
docker-compose psLook for healthy core services:
dr-appdr-videotranscription-hubdr-event-hubdr-matchingdr-remote-worker
Stop The Stack
docker compose downDo not remove volumes unless you intentionally want to delete persisted data.