执行docker push时报错denied: requested access to the resource is denied

我在给镜像库推python镜像时报错如下:

执行的命令是docker push admin/harbor.xxx.com/dev/python:2.7,其中admin是我的账户名。

报错denied: requested access to the resource is denied,原因是已经执行docker login了,但是打tag和push时又加了账户名,解决办法就是在打tag以及push时都不要加账户名,我这就是去掉admin

正确流程如下:

1,执行docker login登录你的私有仓库

2,打tag,docker tag python:2.7 harbor.xxx.com/dev/python:2.7,

3,推送,docker push harbor.xxx.com/dev/python:2.7

即可OK!

 

如果解决了你的问题,记得留个赞哦,有缘再会!

你可能感兴趣的:(执行docker push时报错denied: requested access to the resource is denied)