直接使用,直接拿镜像域名拼接上官方镜像名,例如要拉去镜像 /istio/distroless,可以用下面写法(不要带 https://

docker pull docker.unsee.tech/istio/distroless
	

方式2:长久有效

修改文件 /etc/docker/daemon.json(如果不存在则需要创建,注意不要写入中文符号),并重启服务。

创建配置文件

sudo mkdir -p /etc/docker/

写入配置

sudo tee /etc/docker/daemon.json <<-'EOF'
	{
		"registry-mirrors": [
			"https://docker.unsee.tech"
		]
	}
	EOF

重启docker服务

sudo systemctl daemon-reload && sudo systemctl restart docker

长期更新更多镜像代理站见:访问我的博客