Docker镜像加速配置
Docker默认镜像源在国外,国内下载速度可能略慢,配置国内Docker镜像源,会大大提高Docker镜像拉取速度。
(1)配置 163 网易镜像加速器
[root@ansible ~]# vim /etc/docker/daemon.json { "registry-mirrors":["http://hub-mirror.c.163.com"] }
(2)配置Docker国内镜像源
[root@ansible ~]# vim /etc/docker/daemon.json { "registry-mirrors": [ "https://registry.docker-cn.com"] }
(3)配置Docker USTC镜像源
[root@ansible ~]# vim /etc/docker/daemon.json { "registry-mirrors": [ "https://docker.mirrors.ustc.edu.cn"] }
作者:UStarGao
链接:https://www.starcto.com/docker/269.html
来源:STARCTO
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
UCloud云平台推荐
随便看看
- 2021-02-11Linux 安装Python2与Python3
- 2021-04-23Linux 预防SSH暴力破解神器—DenyHosts
- 2021-08-16Elasticsearch 7.7.0容器化部署
- 2023-08-18ubuntu修改hosts解析导致sudo命令卡住/hang住
- 2021-11-17Linux压缩与解压工具详解