Docker Images
Published container images for Clutch Protocol components. All images use the :latest tag on the default branch; tagged releases use semver from git tags.
Registry overview
| Registry | Scope | Login |
|---|---|---|
| GitHub Container Registry (GHCR) | All images below | docker login ghcr.io (required if packages are private) |
| Docker Hub | Node, Hub API, demo app | No login required for public pulls |
tip
clutch-deploy pulls from GHCR by default. See Docker Deploy for the full stack.
Images
| Component | GHCR | Docker Hub |
|---|---|---|
| Clutch Node | ghcr.io/clutchprotocol/clutch-node | 9194010019/clutch-node |
| Clutch Hub API | ghcr.io/clutchprotocol/clutch-hub-api | 9194010019/clutch-hub-api |
| Demo app | ghcr.io/clutchprotocol/clutch-hub-demo-app | 9194010019/clutch-hub-demo-app |
| Explorer backend | ghcr.io/clutchprotocol/clutch-explorer-backend | — |
| Explorer frontend | ghcr.io/clutchprotocol/clutch-explorer-frontend | — |
Pull examples
# GHCR (used by clutch-deploy)
docker pull ghcr.io/clutchprotocol/clutch-node:latest
docker pull ghcr.io/clutchprotocol/clutch-hub-api:latest
docker pull ghcr.io/clutchprotocol/clutch-hub-demo-app:latest
docker pull ghcr.io/clutchprotocol/clutch-explorer-backend:latest
docker pull ghcr.io/clutchprotocol/clutch-explorer-frontend:latest
# Docker Hub (node, API, demo only)
docker pull 9194010019/clutch-node:latest
docker pull 9194010019/clutch-hub-api:latest
docker pull 9194010019/clutch-hub-demo-app:latest
Related
- Docker Deploy — local full stack
- Clutch Deploy — compose files and stage deployment
- Running Clutch Node — single-node Docker run
- Hub API overview — API container usage