无法从Docker Hub中提取Docker中的Docker映像

问题描述 投票:0回答:1

我正在Linux ol7中使用docker。我已经成功安装了码头工人。但是,当我尝试从Docker集线器中提取图像时,出现以下错误。

[root@xxxxx ~]# docker run hello-world

Unable to find image 'hello-world: latest' locally
docker: error during connect: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.39/images/create?fromImage=hello-world&tag=latest: EOF.
See 'docker run --help'.

我正在使用的Docker版本-Docker版本18.09.1-ol,内部版本e32a1bd

docker dockerhub
1个回答
1
投票

尝试传递到完整的Docker注册表官方URL,从错误看来,它看起来像是在主机Docker套接字docker.sock或其他地方,但不在官方注册表上。

docker run registry.hub.docker.com/library/hello-world

您可以浏览thisthis以处理注册表URL。

© www.soinside.com 2019 - 2024. All rights reserved.