玩客云CasaOS修改docker国内镜像源
使用玩客云安装CasaOS以后,在安装Alist的时候,拉取镜像的时候一直不成功,速度特别慢,几次尝试都没有成功,以后想到是不是docker镜像在国外,修改为国内源以后会不会快一点。
镜像源
网易:http://hub-mirror.c.163.com
中科大镜像地址:http://mirrors.ustc.edu.cn/
中科大github地址:https://github.com/ustclug/mirrorrequest
Azure中国镜像地址:http://mirror.azure.cn/
Azure中国github地址:https://github.com/Azure/container-service-for-azure-china
DockerHub镜像仓库: https://hub.docker.com/
阿里云镜像仓库: https://cr.console.aliyun.com
google镜像仓库: https://console.cloud.google.com/gcr/images/google-containers/GLOBAL (如果你本地可以翻墙的话是可以连上去的 )
coreos镜像仓库: https://quay.io/repository/
RedHat镜像仓库: https://access.redhat.com/containers
sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": [ "http://hub-mirror.c.163.com", "https://docker.mirrors.ustc.edu.cn", "https://registry.docker-cn.com" ] } EOF sudo systemctl daemon-reload sudo systemctl restart docker
查看是否成功
docker info
上图可以看到返加的信息显示已经成功添加了国内镜像源。
玩客云CasaOS修改docker国内镜像源:等您坐沙发呢!