-
-
Notifications
You must be signed in to change notification settings - Fork 13
Containers
Ben Severn edited this page May 1, 2026
·
1 revision
Every Suite package ships as a multi-arch container image (linux/amd64 + linux/arm64) on GitHub Container Registry. Pull anonymously, no auth needed.
| Image | Source Dockerfile | Default port |
|---|---|---|
ghcr.io/benzsevern/goldensuite-mcp |
packages/python/goldensuite-mcp/Dockerfile.mcp |
8300 |
ghcr.io/benzsevern/goldenmatch-mcp |
packages/python/goldenmatch/Dockerfile.mcp |
8200 |
ghcr.io/benzsevern/goldencheck-mcp |
packages/python/goldencheck/Dockerfile.mcp |
8100 |
ghcr.io/benzsevern/goldenflow-mcp |
packages/python/goldenflow/Dockerfile.mcp |
8150 |
ghcr.io/benzsevern/goldenpipe-mcp |
packages/python/goldenpipe/Dockerfile.mcp |
8250 |
ghcr.io/benzsevern/infermap-mcp |
packages/python/infermap/Dockerfile.mcp |
8400 |
ghcr.io/benzsevern/goldenmatch-extensions |
packages/rust/extensions/Dockerfile |
5432 (Postgres) |
-
:latest— currentmain -
:main-<sha7>— every push to main, immutable per commit -
:vX.Y.Zand:vX.Y— pushed when a<package>-vX.Y.Zgit tag is created
# One container, every Suite tool
docker run -p 8300:8300 ghcr.io/benzsevern/goldensuite-mcp:latest
# Per-package containers — narrower deployments
docker run -p 8200:8200 ghcr.io/benzsevern/goldenmatch-mcp:latest
# Postgres + extension preinstalled
docker run -e POSTGRES_PASSWORD=secret -p 5432:5432 \
ghcr.io/benzsevern/goldenmatch-extensions:latest.github/workflows/publish-containers.yml. Triggers:
- Push to
main→ all 7 images get:latest+:main-<sha7> - Tag
<image>-v<X.Y.Z>→ only that image, with:vX.Y.Z+:vX.Y+:latest
Auth uses the workflow's built-in GITHUB_TOKEN (no PAT required for ghcr). Build cache is the GH Actions cache backend, scoped per image.
All seven packages are public on ghcr — pulls work without authentication. The user-level "Inherit access from source repository" default ensures any new packages from CI inherit the source repo's visibility.
⚡ GoldenMatch — Entity resolution toolkit | PyPI | GitHub | Open in Colab | MIT License
🟡 Golden Suite (Monorepo)
Suite Packages
- GoldenCheck · data quality
- GoldenFlow · transforms
- GoldenPipe · orchestrator
- InferMap · schema mapping
Getting Started
- Installation
- Quick Start
- Auto-Config Controller · enhanced through v1.12
- Configuration
- Verification · new in v1.5
- CLI Reference
Core Concepts
AI Integration
Advanced
- PPRL
- Domain Packs
- Streaming / CDC
- Database Integration
- GPU & Vertex AI
- REST API
- Interactive TUI
- Web UI · new in v1.7
- Evaluation
Reference
pip install goldenmatch
npm install goldenmatch