Docker Images
This page documents all Docker container images provided by the SIROS Foundation for the SIROS ID platform.
Container Registry
All images are published to the GitHub Container Registry (GHCR):
ghcr.io/sirosfoundation/<image-name>
VC Platform Images
The Verifiable Credentials (VC) platform provides multiple services.
Available Services
| Service | Image |
|---|---|
| Verifier | ghcr.io/sirosfoundation/vc-verifier |
| Issuer | ghcr.io/sirosfoundation/vc-issuer |
| API Gateway | ghcr.io/sirosfoundation/vc-apigw |
| Registry | ghcr.io/sirosfoundation/vc-registry |
| Persistent | ghcr.io/sirosfoundation/vc-persistent |
| Mock AS | ghcr.io/sirosfoundation/vc-mockas |
| UI | ghcr.io/sirosfoundation/vc-ui |
All images include SAML 2.0 SP, OIDC RP, and all credential format support.
-full variantsPrevious versions shipped separate -full images that included SAML, OIDC RP, and VC 2.0 support via Go build tags. As of the current release, all features are included in the standard images and the -full suffix is no longer needed. Existing -full image references will continue to work as aliases but should be updated.
Version Tags
Images are tagged with multiple version identifiers:
| Tag Pattern | Description | Example |
|---|---|---|
latest | Latest build from main branch | vc-verifier:latest |
main | Current main branch | vc-verifier:main |
v{version} | Semantic version release | vc-verifier:v1.2.3 |
v{major}.{minor} | Minor version (latest patch) | vc-verifier:v1.2 |
v{major} | Major version (latest minor) | vc-verifier:v1 |
{sha} | Git commit SHA | vc-verifier:abc1234 |
YYYYMMDD_HHmmss | Timestamp build | vc-verifier:20260107_143052 |
Recommended for production: Use semantic version tags (e.g., v1.2.3) for reproducible deployments.
Trust Service Images
go-trust
AuthZEN-compliant trust evaluation service.
| Image | Description |
|---|---|
ghcr.io/sirosfoundation/go-trust | Trust evaluation service |
Tags: Same tagging scheme as VC images (latest, main, v{version}, {sha})
docker pull ghcr.io/sirosfoundation/go-trust:latest
Wallet Backend Images
go-wallet-backend
Backend service for the SIROS ID wallet application.
| Image | Description |
|---|---|
ghcr.io/sirosfoundation/go-wallet-backend | Wallet backend service |
Tags: Same tagging scheme as VC images (latest, main, v{version}, {sha})
docker pull ghcr.io/sirosfoundation/go-wallet-backend:latest
Pulling Images
Authentication
Public read access is available for all images. For pulling rate-limited scenarios, authenticate with a GitHub token:
# Login to GHCR
echo $GITHUB_TOKEN | docker login ghcr.io -u USERNAME --password-stdin
Pull Examples
# Standard verifier (latest)
docker pull ghcr.io/sirosfoundation/vc-verifier:latest
# Standard issuer
docker pull ghcr.io/sirosfoundation/vc-issuer:latest
# Trust service
docker pull ghcr.io/sirosfoundation/go-trust:latest
# Wallet backend
docker pull ghcr.io/sirosfoundation/go-wallet-backend:latest
Platforms
All images are built for multiple architectures:
| Architecture | Platform |
|---|---|
linux/amd64 | x86_64 (Intel/AMD) |
linux/arm64 | ARM64 (Apple Silicon, AWS Graviton, etc.) |
Docker automatically selects the correct platform for your system.
Choosing the Right Image
Decision Tree
Common Deployment Scenarios
All features (SAML, OIDC, SD-JWT VC, VC 2.0) are included in every image.
| Scenario | Verifier Image | Issuer Image |
|---|---|---|
| Basic OID4VC deployment | vc-verifier | vc-issuer |
| Academic federation (eduGAIN/SAML) | vc-verifier | vc-issuer |
| Government identity (SAML) | vc-verifier | vc-issuer |
| Enterprise OIDC | vc-verifier | vc-issuer |
Example Docker Compose
Standard Deployment
services:
verifier:
image: ghcr.io/sirosfoundation/vc-verifier:latest
restart: always
ports:
- "8080:8080"
volumes:
- ./config.yaml:/config.yaml:ro
environment:
- VC_CONFIG_YAML=config.yaml
issuer:
image: ghcr.io/sirosfoundation/vc-issuer:latest
restart: always
ports:
- "8081:8080"
volumes:
- ./issuer-config.yaml:/config.yaml:ro
environment:
- VC_CONFIG_YAML=config.yaml
trust:
image: ghcr.io/sirosfoundation/go-trust:latest
restart: always
ports:
- "8082:6001"
mongo:
image: mongo:7
restart: always
volumes:
- mongo-data:/data/db
volumes:
mongo-data:
SAML Deployment
services:
verifier:
image: ghcr.io/sirosfoundation/vc-verifier:latest
restart: always
ports:
- "8080:8080"
volumes:
- ./config.yaml:/config.yaml:ro
- ./saml-metadata:/saml-metadata:ro
environment:
- VC_CONFIG_YAML=config.yaml
issuer:
image: ghcr.io/sirosfoundation/vc-issuer:latest
restart: always
ports:
- "8081:8080"
volumes:
- ./issuer-config.yaml:/config.yaml:ro
- ./idp-metadata:/idp-metadata:ro
environment:
- VC_CONFIG_YAML=config.yaml
mongo:
image: mongo:7
restart: always
volumes:
- mongo-data:/data/db
volumes:
mongo-data:
Source Code & CI/CD
| Component | Repository | Workflow |
|---|---|---|
| VC Services | sirosfoundation/vc | docker-publish.yaml |
| go-trust | sirosfoundation/go-trust | docker-publish.yml |
| go-wallet-backend | sirosfoundation/go-wallet-backend | docker-publish.yml |