我是Docker
的新手,并试图将Docker
图像推到集线器。给我以下错误。
docker container run hellowold
This is v2
docker image tag hellowold:2 prateekaxyz/hellowold:latest
docker login http://hub.docker.com --username=prateek512
Password:
Login Succeeded
docker push prateekaxyz/hellowold:latest
The push refers to a repository [docker.io/prateekaxyz/hellowold]
93351e248e6e: Preparing
298c3bb2664f: Preparing
73046094a9b8: Preparing
denied: requested access to the resource is denied
答案 0 :(得分:1)
您应该先登录。假设你有一个帐户https://hub.docker.com/ 作为name / password = prateekaxyz / bar。
推之前,应
docker login -u prateekaxyz -p bar
登录成功后,您可以在命名空间下推图像搬运工中心
请注意,您的图片应以您的名字开头,例如prateekaxyz / aa:version
答案 1 :(得分:0)
您需要先标记图像,然后再推动
docker tag firstimage YOUR_DOCKERHUB_NAME / firstimage 然后您可以推动它。
docker push YOUR_DOCKERHUB_NAME / firstimage
参考:https://intellipaat.com/community/207/denied-requested-access-to-the-resource-is-denied-docker