Claude Transcripts docs GitHub
Work in progressUnder active development — not tested as ready for use. Breaking changes land without notice, stored data may need to be discarded between revisions, and there is no auth or security model. These docs describe the intended design as much as the current state.

24. Mirror third-party backing-service images to the container registry

Date: 2026-06-18

Status

Accepted

Context

The bundled stack (containers.md) runs third-party backing services — CouchDB, Garage, Meilisearch (and their admin UIs). Pulling these from their upstream registries at deploy time means the project's reproducibility depends on external registries staying available, unchanged, and rate-limit-free.

Decision

Keep copies of all third-party backing-service images we depend on, mirrored in the project's own GitHub Container Registry (GHCR) namespace. The bundled stack and the release pipeline reference the mirrored images (pinned by tag/digest), not the upstream ones directly. A dev automation (scripts/mirror-images.ts, dev-automation.md) pulls the pinned upstream images and pushes them to ghcr.io/<owner>/….

For local development, a fresh clone can bypass the mirror entirely with the upstream dev override (bun run stack:up:upstream), which pulls the canonical public images directly — so the mirror is a deploy/reproducibility aid, not a prerequisite for git clone && run.

Consequences