按照文档 https://lug.ustc.edu.cn/wiki/mirrors/help/docker
新版的 Docker 使用 /etc/docker/daemon.json 加入以下内容即可配置 mirror
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
但是 pull 个 redis 都会卡住
楼主现在只能配置 proxy 使用,方法是在 /etc/systemd/system/docker.service.d/override.conf 中加入 [Service] Environment="HTTPS_PROXY=https://proxy.example.com:443/"
对这种方法也不是很满意,不想用的时候还要把这个文件或把内容注释移走并重启服务,有没有临时让 docker daemon 挂代理的方法
1
zeyexe 2017-05-04 23:12:32 +08:00
docker info 看下 Registry Mirrors 信息是不这样:
Registry Mirrors: https://docker.mirrors.ustc.edu.cn 如果已经配置上了还慢那就是确实你那里到 USTC 慢了 |
2
phx13ye OP @zeyexe 是啊
Insecure Registries: 127.0.0.0/8 Registry Mirrors: https://docker.mirrors.ustc.edu.cn/ Live Restore Enabled: false 但是ustc在我的源里面能排进前六的啊,不过是arch的源 ``` ~ rankmirrors -n 6 /etc/pacman.d/mirrorlist.pacnew | grep -v "^#" Server = http://mirrors.zju.edu.cn/archlinux/$repo/os/$arch Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch Server = http://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch Server = http://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo/os/$arch Server = https://mirrors.ustc.edu.cn/archlinux/$repo/os/$arch ``` |
3
billlee 2017-05-04 23:26:06 +08:00
ustc 又出 bug 了吧,前几个月就出过问题,当时给管理员发了 email, 好了一段时间又出问题了,我已经换到网易的 mirror 了。
|
4
phx13ye OP |
5
billlee 2017-05-04 23:30:31 +08:00
@phx13ye #4 不需要,就配成 https://hub-mirror.c.163.com 就可以了
|