当前位置: 首页 > article >正文

Docker运行hello-world镜像失败或超时:Unable to find image ‘hello-world:latest‘ locally Trying to pull reposi

Docker运行hello-world镜像失败或超时,报错:Unable to find image ‘hello-world:latest’ locally
Trying to pull repository docker.io/library/hello-world …
/usr/bin/docker-current: missing signature key.
See ‘/usr/bin/docker-current run --help’.
如下图:
在这里插入图片描述
在安装 Docker 并尝试运行 hello-world 时,遇到连接超时的问题,这通常是因为默认的 Docker 镜像源访问速度较慢或不稳定所导致的。为了加速 Docker 镜像的下载和提升稳定性,解决这个问题的一种有效方法就是更换镜像源

可以参考官方文档(阿里云)解决步骤:
https://cr.console.aliyun.com/cn-shenzhen/instances/mirrors

我的解决方案
第一步:配置加速地址:设置registry mirror

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
    "registry-mirrors": [
        "https://do.nark.eu.org",
        "https://dc.j8.work",
        "https://docker.m.daocloud.io",
        "https://dockerproxy.com",
        "https://docker.mirrors.ustc.edu.cn",
        "https://docker.nju.edu.cn"
    ]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
systemctl status docker

第二步:重启完docker之后检查registry mirror刚刚配置的加速地址是否成功

docker info

看到:
在这里插入图片描述
在这里插入图片描述
这里出现了Registy Mirrors。说明通过上面的命令已经配置成功。

第三步:运行docker run hello-world

docker run hello-world

在这里插入图片描述

此时我们也可以查看是否成功拉取hello-world镜像:

docker images

在这里插入图片描述
Docker运行hello-world镜像失败或超时的问题终于解决了。


http://www.kler.cn/a/458936.html

相关文章:

  • 跟我学C++中级篇——std::shared_lock
  • C语言宏和结构体的使用代码
  • 【蓝桥杯——物联网设计与开发】拓展模块4 - 脉冲模块
  • .NET在中国的就业前景:开源与跨平台带来的新机遇
  • 基于深度学习的视觉检测小项目(二) 环境和框架搭建
  • 极品飞车6的游戏手柄设置
  • Hbase的特点、特性
  • 【Vue】深入理解v-model指令-父子组件数据绑定
  • AI生成视频字幕--VideoCaptioner/卡卡字幕助手
  • 【Java】深入了解 Java 中的 split() 方法
  • 什么是Spring Boot 应用开发?
  • VuePress搭建个人博客
  • 根据 business_group的值在 Django 管理员界面中显示不同字段
  • 智能工厂的设计软件 应用场景的一个例子:为AI聊天工具添加一个知识系统 之7 附件(文档)
  • 项目基本配置
  • Xshell日志录制
  • Java:190 基于SSM的药品管理系统
  • 计算机毕设-基于springboot的食品厂管理系统的设计与实现(附源码+lw+ppt+开题报告)
  • 计算机视觉目标检测-2
  • 有压缩格式的Bitmap(BMP)图像显示调色板数据和图像数据
  • 单机部署elasticsearch集群
  • torch.save的用法
  • 机器学习中的常用特征选择方法及其应用案例
  • 【Qt】多元素控件:QListWidget、QTableWidget、QTreeWidget
  • I2C(一):存储器模式:stm32作为主机对AT24C02写读数据
  • 2024年12月28日人工智能与科技新闻速递