Backdocker.io/sonatype/nexus3
docker.io

docker.io/sonatype/nexus3:3.90.2

Sonatype Nexus Repository 3

Size
377.77 MB
Local pulls
10
Upstream pulls
200,776,911
Synced at
2026-08-15 09:30:10

China image

registry.cn-global.starbucket.com.cn/starbucket/docker.io/sonatype/nexus3:3.90.2

Source image

docker.io/sonatype/nexus3:3.90.2

Image info

Image ID
sha256:b17ce89f75bfe368596ecbe92037ff55e2c70afb8e87c4eb144004f2de519648
Image tag
3.90.2
Image size
377.77 MB
Platform
linux/arm64
Registry
docker.io
CMD
Entrypoint
Working dir
User
StopSignal
Created
2026-03-23T19:03:21.433Z

Exposed ports 0

None

Environment 0

None yet (needs synced Hub registry config)

Pull commands

Docker
docker pull registry.cn-global.starbucket.com.cn/starbucket/docker.io/sonatype/nexus3:3.90.2
docker tag registry.cn-global.starbucket.com.cn/starbucket/docker.io/sonatype/nexus3:3.90.2 docker.io/sonatype/nexus3:3.90.2
Containerd
ctr images pull registry.cn-global.starbucket.com.cn/starbucket/docker.io/sonatype/nexus3:3.90.2
ctr images tag registry.cn-global.starbucket.com.cn/starbucket/docker.io/sonatype/nexus3:3.90.2 docker.io/sonatype/nexus3:3.90.2
YAML quick replace
sed -i 's#docker.io/sonatype/nexus3:3.90.2#registry.cn-global.starbucket.com.cn/starbucket/docker.io/sonatype/nexus3:3.90.2#' deployment.yaml
Global registry mirror
Docker

Write Docker daemon.json so registry-mirrors points to this site, then restart Docker

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<'EOF'
{
  "registry-mirrors": ["https://registry.cn-global.starbucket.com.cn"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
Containerd

Write containerd certs.d hosts.toml so docker.io pulls via this site, then restart containerd

sudo mkdir -p /etc/containerd/certs.d/docker.io
sudo tee /etc/containerd/certs.d/docker.io/hosts.toml <<'EOF'
server = "https://docker.io"

[host."https://registry.cn-global.starbucket.com.cn"]
  capabilities = ["pull", "resolve"]
EOF
sudo mkdir -p /etc/containerd
if [ ! -f /etc/containerd/config.toml ]; then
  sudo containerd config default | sudo tee /etc/containerd/config.toml >/dev/null
fi
sudo sed -i 's#config_path = ""#config_path = "/etc/containerd/certs.d"#' /etc/containerd/config.toml
sudo systemctl restart containerd