BUG

起始: 使用docker拉取镜像仓库时提示Error response from daemon: Get ‘https://registry-1.docker.io/v2/’

原因: 使用的镜像源网站不能用了

解决方法:到docker的配置文件/etc/docker/daemon.json 换新的镜像源(可以网上直接查)后执行以下命令: sudo systemctl daemon-reload && sudo systemctl restart docker

"registry-mirrors": [
"https://docker.1ms.run",
"https://docker.xuanyuan.me"
]