Docker配置Daocloud加速器
由于Docker在拉取镜像的时候速度非常的慢,所以要配置一个加速器,具体配置如下:1、首先通过https://account.daocloud.io/signin注册一个账号,并登陆。2、点击右上角加速器生成配置参数3、复制配置参数直接运行[root@localhost ~]# curl -sSL https://get.daocloud.io/daotools/set_mi...
·
由于Docker在拉取镜像的时候速度非常的慢,所以要配置一个加速器,具体配置如下:
1、首先通过https://account.daocloud.io/signin注册一个账号,并登陆。
2、点击右上角加速器生成配置参数
3、复制配置参数直接运行
[root@localhost ~]# curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://********.m.daocloud.io
docker version >= 1.12
{"registry-mirrors": ["http://********.m.daocloud.io"],}
Success.
You need to restart docker to take effect: sudo systemctl restart docker
4、由于daocloud官方提供的脚本问题,需要手动修改daemon.json(如果重启成功可以忽略此步骤)
把内容{"registry-mirrors": ["http://********.m.daocloud.io"],}最后一个逗号去掉,目录在/etc/docker/daemon.json中
5、重启Docker
[root@localhost ~]# systemctl restart docker
更多推荐
已为社区贡献1条内容
所有评论(0)