Skip to main content

Container Registry

Private Docker/OCI registry with vulnerability scanning and image signing.

Features

  • Docker and OCI-compatible
  • Vulnerability scanning with Trivy
  • Image signing with Cosign/Sigstore
  • Garbage collection
  • Webhook notifications
  • Replication across regions
  • Role-based access control

Plans

PlanStorageScans/moPrice
Starter5GB100$9/mo
Standard25GB500$27/mo
Pro100GBUnlimited$72/mo

Quick Start

# Create a registry
szc registry create my-registry --plan starter

# Login to registry
szc registry login my-registry

# Or use Docker directly
docker login registry.sparbz.cloud -u <username>

Pushing Images

# Tag your image
docker tag my-app:latest registry.sparbz.cloud/my-registry/my-app:latest

# Push
docker push registry.sparbz.cloud/my-registry/my-app:latest

Vulnerability Scanning

Scans run automatically on push. View results:

# Get scan results
szc registry scan my-registry/my-app:latest

# List vulnerabilities
szc registry vulnerabilities my-registry/my-app:latest

Webhooks

Configure webhooks for CI/CD integration:

# Add webhook
szc registry webhook add my-registry \
--url https://ci.example.com/webhook \
--events push,scan_completed