Managed OCI-compliant container registry and APT/RPM package repositories across 6 European data centers. Built for teams that move fast.
# 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
Images cached at 6 PoPs across Europe. Sub-100ms pulls from Frankfurt, Helsinki, Amsterdam, Warsaw, Zurich, and London.
TLS 1.3 everywhere. At-rest encryption with AES-256. Optional customer-managed keys for enterprise accounts.
First-class support for amd64, arm64, armv7, and s390x. Automatic manifest list creation on push.
Host your own Debian and RPM repositories with GPG signing. Upstream mirroring with configurable sync intervals.
Automated Trivy-based scanning on every push. CVE tracking, SBOM generation, and policy enforcement gates.
Pull counts, bandwidth breakdown, and storage trends per repository. Export to Prometheus or Datadog.
Real-time numbers from our infrastructure. Updated every 30 seconds.
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 |
Host or mirror Debian and RPM repositories with automatic GPG signing and upstream sync.
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
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