推送镜像到dockery hub的时候报“docker push requested access to the resource is denied”,但明明已经登录了。
参考这个帖子解决的:https://blog.csdn.net/shoneworn/article/details/80622268
把镜像放到用户名下。
备注:帖子中的ping是仓库名。
docker安装yum源:
https://docs.docker.com/v1.13/engine/installation/linux/centos/
docker配置镜像加速器(阿里云):
https://cr.console.aliyun.com/cn-hangzhou/mirrors
centos7上使用docker registory 2.0构建私有仓库后(私有仓库和docker客户端位于不同的linux下),执行sudo docker push ip:5000/test/microservice-discovery-eureka后,提示“
server gave http response to https client”,推送失败。
解决方法:
在/etc/docker/daemon.json文件中,增加 “insecure-registries”:["ip:5000"],然后执行
sudo systemctl daemon-reload
sudo systemctl restart docker
再次推送就可以了。