Docker发布镜像报错:denied: requested access to the resource is denied
denied: requested access to the resource is denied
·
Error:denied: requested access to the resource is denied # 拒绝:请求的资源访问被拒绝
报错原因:问题很明显,要发布的镜像的资源不是你自己的,大概率是打tag的时候,没有先登录,或者帐号shell脚本写的用户是别人的,自然下载不了也上载不了咯
解决方案:
先登录镜像仓库,后打tag,再push
登录harbor:
docker login 10.1.*.* -u admin -p ***
推送机器镜像prepare:
docker tag d287f21ea214 10.1.*.*/library/common/jdk:8
推送镜像:
docker push 10.1.*.*/library/common/jdk:8 ## 版本号不加默认latest
更多推荐
已为社区贡献1条内容
所有评论(0)