- A+
所属分类:技术
镜像加速说明
PV
765
|
UV
565
域名
哪个快用哪个,都添加到镜像加速也不是不行
这里的域名就是下面需要替换的{workers_host}
hub.nat.tf
hub1.nat.tf
hub2.nat.tf
使用方法①
原拉取镜像命令:
docker pull library/alpine:latest
加速拉取镜像命令:
docker pull hub.nat.tf/library/alpine:latest
使用方法②
一键设置镜像加速:修改文件 /etc/docker/daemon.json(如果不存在则创建)
nano /etc/docker/daemon.json
修改JSON文件 更改为以下内容 然后保存
{
"registry-mirrors": [
"https://hub.nat.tf",
"https://hub1.nat.tf",
"https://hub2.nat.tf"
]
}
重载systemd管理守护进程配置文件
sudo systemctl daemon-reload
重启 Docker 服务
sudo systemctl restart docker
使用方法③
为了加速镜像拉取,使用以下命令设置registry mirror:
sudo tee /etc/docker/daemon.json <<EOF
{
"registry-mirrors": [
"https://hub.nat.tf",
"https://hub1.nat.tf",
"https://hub2.nat.tf"
]
}
EOF
重载systemd管理守护进程配置文件
sudo systemctl daemon-reload
重启 Docker 服务
sudo systemctl restart docker
|
棉花云
|
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫