
虚拟机拉取镜像时的常见问题
5星
- 浏览量: 0
- 大小:None
- 文件类型:None
简介:
本文介绍了在使用虚拟机过程中拉取镜像时常遇到的问题,并提供了相应的解决方案和建议。
当执行 `docker pull` 时出现错误“error pulling image configuration: Get https://dseasb33srnrn.cloudfront.net/”,通常意味着无法连接到 Docker Hub。解决方法是停止 Docker 服务,然后设置镜像仓库的镜像源为国内的加速器地址:
```bash
systemctl stop docker
echo DOCKER_OPTS=$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io | sudo tee -a /etc/default/docker
```
最后重启 Docker 服务:
```bash
service docker restart
```
全部评论 (0)
还没有任何评论哟~


