docker mirrors
还能使用的
https://segmentfault.com/q/1010000044951309
发现一些还能用的
sudo vim /etc/docker/daemon.json写入
{ "registry-mirrors": [ "https://ustc-edu-cn.mirror.aliyuncs.com/", "https://ccr.ccs.tencentyun.com/", "https://docker.m.daocloud.io/" ] }
https://segmentfault.com/q/1010000044878648?utm_source=sf-similar-question
sudo systemctl daemon-reload
sudo systemctl restart docker
{ "debug": false, "experimental": false, "insecure-registries": [ ], "registry-mirrors": [ "https://docker.m.daocloud.io", "https://mirror.aliyuncs.com", "https://hub-mirror.c.163.com" ] }
docker 镜像 public-image-mirror
https://www.cnblogs.com/manastudent/p/18245207
docker run -d -P m.daocloud.io/docker.io/library/nginx
https://github.com/DaoCloud/public-image-mirror
增加前缀 (推荐方式)。比如:
docker.io/library/busybox | V m.daocloud.io/docker.io/library/busybox
或者 支持的镜像仓库 的 前缀替换 就可以使用。比如:
docker.io/library/busybox | V docker.m.daocloud.io/library/busybox
yandex
https://www.bilibili.com/read/cv35387254/
Yandex镜像
优点:适合单独pull镜像使用
缺点:不支持配置到 daemon.json
官方镜像:https://mirror.yandex.ru/
使用方式:docker pull cr.yandex/mirror/nginx 作者:真-如有乐享 https://www.bilibili.com/read/cv35387254/ 出处:bilibili
出处:http://www.cnblogs.com/lightsong/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。