docker配置阿里云镜像加速器

问题一:配置阿里云镜像

在使用docker下载mysql,tomcat,redis时发现下载速度时快时慢,这时我们可以在虚拟机中配置阿里云镜像加速。
1.登录阿里云
https://cr.console.aliyun.com/cn-hangzhou/new
2.选择镜像加速器

图片.png

3.在centOS7中的 /etc/docker/daemon.json目录下(没有就新建),将下面内容写入

# vi /etc/docker/daemon.json //启用编辑
{
     "registry-mirrors": ["https://xxxxxx.mirror.aliyuncs.com"] //这里填加速器地址
   }

你可能感兴趣的:(docker配置阿里云镜像加速器)