推送镜像到DockerHub
我们推送镜像到DockerHub时会遇到没有访问资源权限的问题
requested access to the resource is deni
ed
这是因为dockerhub不知道是谁推送的镜像,所以推送不上去。
解决这个问题:
1.检查有没有登录dockerhub
D:\study\ispp-return>docker login
Authenticating with existing credentials...
Login Succeeded
Logging in with your password grants your terminal complete access to your accou
nt.
For better security, log in with a limited-privilege personal access token. Lear
n more at https://docs.docker.com/go/access-tokens/
2.给自己的镜像打tag并推送文章来源:https://www.toymoban.com/news/detail-535976.html
docker tag ffcs/springboot_demo 19950805/springboot_demo:01
docker push 19950805/springboot_demo:01
打tag的格式为
docker tag [镜像] [dockerhub的用户名]/[仓库里的镜像名]:[标签]
现在就可以推送了
docker push 19950805/springboot_demo:01文章来源地址https://www.toymoban.com/news/detail-535976.html
到了这里,关于推送镜像到DockerHub报无访问权限的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!