我正在按照这个链接创建我的第一个 docker Image,它成功了,现在我正试图从这个链接将这个 Image 推送到我的 docker 存储库中。但是,每当我尝试将此图像推送到存储库时,都会出现此类错误。
denied: requested access to the resource is denied
谁能给我一些关于这个问题的提示?任何帮助将不胜感激。
注意:我已经成功登录docker
在 docker push 之前,您可能需要将 docker repo 切换为私有。
# you may need log out first `docker logout` ref. https://stackoverflow.com/a/53835882/248616 docker login
根据文档:
You need to include the namespace for Docker Hub to associate it with your account. The namespace is the same as your Docker Hub account name. You need to rename the image to YOUR_DOCKERHUB_NAME/docker-whale.
因此,这意味着您必须在推送之前 标记您的图像:
docker tag firstimage YOUR_DOCKERHUB_NAME/firstimage
然后你应该能够推动它。
docker push YOUR_DOCKERHUB_NAME/firstimage