ubuntu中docker安装后sudo docker run hello-world出现Unable to find image 'hello-world:latest' locally原因和解决
问题描述:在ubantu中安装了docker后,使用命令sudo docker run hello-world出现问题Unable to find image 'hello-world:latest' locally这是由于docker的服务器不在国内,服务器以及许多仓库内的镜像在国外,由于“墙”的原因,如果不修改或者添加源就会显示连接不上,话不多说,直接来。解决方法:在docker配...
问题描述:
在ubantu中安装了docker后,使用命令sudo docker run hello-world
出现问题
Unable to find image 'hello-world:latest' locally
这是由于docker的服务器不在国内,服务器以及许多仓库内的镜像在国外,由于“墙”的原因,如果不修改或者添加源就会显示连接不上,话不多说,直接来。
解决方法:
在docker配置中添加阿里的镜像源,在linux终端中依次如下操作:
1:在docker下面路径中创建并添加或修改镜像源
sudo vim /etc/docker/daemon.json
2:在文档里添加如下内容,至于如何添加insert,然后退出保存:w,:q自行百度
{
"registry-mirrors": ["https://alzgoonw.mirror.aliyuncs.com"]
}
3:退出保存后,记得一定要重启服务
systemctl restart docker
sudo systemctl status docker
4:然后就可以玩耍了
sudo docker run hello-world
5:显示以下结果就ok
总结
对于我在解决的过程中同时还发现使用docker search nigix时出现连接错误,如下报错:
Error response from daemon: Get https://index.docker.io/v1/search?q=nigix&n=25: net/http: TLS handshake timeout
这个原则上添加了新的阿里源就可以了,但是实际上也确实如此,因此唯一的可能就是服务器的缓存问题,事后我经过重启服务器后也确实好了,下面是搜索Ubuntu的结果:
更多推荐
所有评论(0)