Ship containers.
Host packages. Sleep well.

Managed OCI-compliant container registry and APT/RPM package repositories across 6 European data centers. Built for teams that move fast.

Create free registry → View documentation
Docker Pull
Docker Push
APT Setup
# Pull from your private registry
docker pull registry.northbaysys.io/myteam/app-backend:v2.4.1

# Or use the Debian package mirror
echo "deb https://apt.northbaysys.io/debian bookworm main" | sudo tee /etc/apt/sources.list.d/northbay.list
curl -fsSL https://apt.northbaysys.io/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/northbay.gpg

Edge-cached pulls

Images cached at 6 PoPs across Europe. Sub-100ms pulls from Frankfurt, Helsinki, Amsterdam, Warsaw, Zurich, and London.

🔒

End-to-end encryption

TLS 1.3 everywhere. At-rest encryption with AES-256. Optional customer-managed keys for enterprise accounts.

📦

Multi-arch manifests

First-class support for amd64, arm64, armv7, and s390x. Automatic manifest list creation on push.

🔄

APT & RPM mirrors

Host your own Debian and RPM repositories with GPG signing. Upstream mirroring with configurable sync intervals.

🛡️

Vulnerability scanning

Automated Trivy-based scanning on every push. CVE tracking, SBOM generation, and policy enforcement gates.

📊

Usage analytics

Pull counts, bandwidth breakdown, and storage trends per repository. Export to Prometheus or Datadog.

Platform metrics

Real-time numbers from our infrastructure. Updated every 30 seconds.

2.4M
Images hosted
↑ 12% this month
847
Active teams
↑ 8% this month
99.97%
Uptime (90d)
— stable
18 PB
Data transferred
↑ 23% this month

Popular public images

Community-maintained base images optimized for European infrastructure.

Image Tag Arch Size Updated
northbay/debian-slim bookworm-20260401 amd64arm64 29.1 MB 2 days ago
northbay/nginx-hardened 1.27.3-alpine amd64arm64 12.4 MB 5 days ago
northbay/postgres-tuned 16.2-bookworm amd64 113 MB 1 week ago
northbay/node-runtime 22.14-slim amd64arm64armv7 67.8 MB 3 days ago
northbay/golang-ci 1.23.2-bookworm amd64arm64 298 MB 1 week ago
northbay/redis-sentinel 7.4.1-alpine amd64 14.2 MB 4 days ago

Package repositories

Host or mirror Debian and RPM repositories with automatic GPG signing and upstream sync.

DEB Debian / Ubuntu APT

Bookworm, Trixie, Jammy, Noble — amd64 and arm64 architectures.

# Add repository
curl -fsSL https://apt.northbaysys.io/gpg.key \
  | gpg --dearmor -o /usr/share/keyrings/nb.gpg

echo "deb [signed-by=/usr/share/keyrings/nb.gpg] \
  https://apt.northbaysys.io/debian bookworm main" \
  > /etc/apt/sources.list.d/northbay.list

apt update

RPM RHEL / Fedora DNF

RHEL 8/9, Fedora 39/40, Rocky Linux — x86_64 and aarch64.

# Add repository
cat > /etc/yum.repos.d/northbay.repo << EOF
[northbay]
name=NorthBay Systems
baseurl=https://rpm.northbaysys.io/el/$releasever/$basearch
gpgcheck=1
gpgkey=https://rpm.northbaysys.io/gpg.key
enabled=1
EOF

dnf update