gpt4 book ai didi

docker - 无法在 Docker 中运行镜像

转载 作者:行者123 更新时间:2023-12-02 20:41:01 25 4
gpt4 key购买 nike

我根据我的一些项目创建了一个名为“ helloworld ”的图像。
如果我运行:

docker images


我可以在列表顶部看到它。
enter image description here
现在如果我想运行它,docker 会提示它不存在。
运行这个:
docker run -p 8080:8080 helloworld
返回这个:

docker: Error response from daemon: pull access denied for helloworld,repository does not exist or may require 'docker login': denied:requested access to the resource is denied. See 'docker run --help'.


为什么 docker 提示我的图像不存在?

最佳答案

它提示,因为:

docker run -p 8080:8080 helloworld
是这个的缩短版本:
docker run -p 8080:8080 docker.io/library/helloworld:latest
并且,根据屏幕截图,您的图像被称为
docker.io/library/helloworld:1.0
所以正确的命令(跳过默认前缀)是:
docker run -p 8080:8080 helloworld:1.0

关于docker - 无法在 Docker 中运行镜像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63798399/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com