docker 安装完成后测试hello-world出现问题(Unable to find image 'hello-world:latest' locally)

安装docker之后,测试hello-world镜像,终端卡在Unable to find image 'hello-world:latest' locally位置 
docker运行hello-world镜像
docker在本地没有找到hello-world镜像,也没有从docker仓库中拉取镜像,出项这个问题的原因:是应为docker服务器再国外,我们在国内
无法正常拉取镜像,所以就需要我们为docker设置国内阿里云的镜像加速器;
需要修改配置文件      /etc/docker/daemon.json  如下

{ 
"registry-mirrors": ["https://alzgoonw.mirror.aliyuncs.com"] 
}
在这里插入图片描述
配置文件daemmon,json添加阿里云镜像地址,保存并退出,并且重启docker服务(systemctl restart docker)
在这里插入图片描述
docker重启之后,就可以正常拉取helloworld镜像了
在这里插入图片描述

你可能感兴趣的:(docker 安装完成后测试hello-world出现问题(Unable to find image 'hello-world:latest' locally))