今天尝试了下docker,发现存在以下问题,进行记录。
时间:2023-12-26
操作系统:centos opencloudos(腾讯云服务器所用centos)
1、pull测试的hello-world镜像报错:
[root@~]# docker run hello-world
Unable to find image 'hello-world:latest' locally
查了下,需要新建daemon.json文件,把docker国外源变更为国内源。
2、尝试
[root@ ~]# vim /etc/docker/daemon.json
在里面insert:
{"registry-mirrors": ["https://registry.docker-cn.com","http://hub-mirror.c.163.com"]}
然而并不支持,重新运行docker报错Job for docker.service failed because the control process exited with error code.
Job for docker.service failed because the control process exited with error code.
3、运行下列命令查看报错信息:
journalctl -xe
报错的信息是 Failed to start Docker Application Container Engine.
4、尝试修改源,重启docker,成功。
{
"registry-mirrors": ["https://alzgoonw.mirror.aliyuncs.com"]
}
systemctl restart docker
systemctl status docker
总结:文章来源:https://www.toymoban.com/news/detail-826190.html
docker拉取镜像报错时,可以尝试修改源。文章来源地址https://www.toymoban.com/news/detail-826190.html
到了这里,关于【docker】 Unable to find image的解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!