简体   繁体   English

无法将映像推送到 docker 容器注册表

[英]Unable to Push image to docker container registry

I have configured docker container registry and frontend as described here我已经按照此处所述配置了 docker 容器注册表和前端

Container registry (port 9001) and frontend (port 8080) are working without any error, but when I try to push the image after tagging it I am getting error (mentioned below)容器注册表(port 9001)和前端(port 8080)工作没有任何错误,但是当我在标记后尝试推送图像时出现错误(如下所述)

$ sudo docker tag nginx:1.17.0 localhost:9001/nginx:reg

$ sudo docker push localhost:9001/nginx:reg

The push refers to repository [localhost:9001/nginx]
Get http://localhost:9001/v2/: read tcp 127.0.0.1:39514->127.0.0.1:9001: read: connection reset by peer

Finally found the issue I was running the container registry on Ports 9001:9001 (host port: registry port) which was wrong, container registry expose services at port 5000 .最后发现我在端口9001:9001 (主机端口:注册表端口)上运行容器注册表的问题,这是错误的,容器注册表在端口5000上公开服务。 So I re-ran container registry on Ports 5000:5000 and the issue was resolved所以我在端口5000:5000上重新运行了容器注册表,问题得到了解决

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Docker 图像推送到谷歌容器注册表不起作用 - Docker Image push to google container registry not working 无法在本地私有注册表上推送 docker 镜像 - Unable to push docker image on local private registry 无法使用Jenkinsfile在注册表上推送Docker映像 - Unable to push docker image on registry using Jenkinsfile 无法将映像推送到Docker Hub注册表 - Unable to push image to Docker Hub registry Docker - 无法将图像推送到私有注册表 - Docker - Unable to push image to private registry 无法将 docker 映像推送到 heroku 注册表 - Unable to push docker image to heroku registry 将 Docker 映像从 GKE 中运行的容器推送到 Google Container Registry - Push a Docker image to Google Container Registry from a container running in the GKE 无法将 docker 映像推送到 Openshift Origin Docker 注册表 - Unable to push docker image to Openshift Origin Docker registry 如何构建 docker 镜像并推送到 azure 容器注册表 - How to build docker image and push to azure container registry 构建 docker-compose 镜像并将其推送到容器注册表中 - Build and push docker-compose image into container registry
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM