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

时间:2019-10-16 10:40:07

标签: docker dockerhub

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

[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

1 个答案:

答案 0 :(得分:1)

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

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

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