1.当我们执行docker pull xxx 下载某个服务的镜像的时候一直下不下来,我们可以配置docker 国内的镜像
在 /etc/docker/daemon.json 文件中添加以下参数(没有该文件则新建):
复制代码{ "registry-mirrors": ["https://9cpn8tt6.mirror.aliyuncs.com"] }
服务重启:
复制代码systemctl daemon-reload systemctl restart docker
2024-02-11 13:11:28
{ "registry-mirrors": ["https://9cpn8tt6.mirror.aliyuncs.com"] }
systemctl daemon-reload systemctl restart docker