Bootstrap

Docker国内设置镜像最新加速地址

当在拉取镜像时报以下错误时,可以通过更换镜像源解决

vi /etc/docker/daemon.json
#插入以下内容
{
    "registry-mirrors": [
        "https://docker.anyhub.us.kg",
        "https://dockerhub.jobcher.com",
        "https://dockerhub.icu"
    ]
}

;