来自守护程序的错误响应:清单错误

时间:2018-04-23 21:49:24

标签: docker containers

我是docker的新用户,我尝试创建我的第一张图片作为测试

https://hub.docker.com/r/abdelmun3m/munemdockertest/

当我试图拉动我的图像并添加代码时,我得到了这个错误

Using default tag: latest
Error response from daemon: manifest for abdelmun3m/munemdockertest:latest not found

有什么问题!

1 个答案:

答案 0 :(得分:0)

您的存储库中没有图像。

您需要在构建图片时使用您的用户名作为前缀标记您的图片:

docker build -t abdelmun3m/munemdockertest .

或标记现有图片:

docker tag <existing image name> abdelmun3m/munemdockertest

然后登录docker hub

docker login

然后推送该图片

docker push abdelmun3m/munemdockertest

有关详细信息,请参阅documentation