docker push 镜像到 nexus
Posted 正怒月神
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker push 镜像到 nexus相关的知识,希望对你有一定的参考价值。
nexus 安装:https://blog.csdn.net/hanjun0612/article/details/105199191
docker destop 安装:https://blog.csdn.net/hanjun0612/article/details/119798564
一,打开powershell
获取一个 hello-world 镜像
docker run hello-world
二,修改tag
#login nexusip:port 是你的nexus地址和端口
docker login --username=admin --password="admin" nexusip:port
#修改tag名
#其实这里tag是对的,只是需要前缀namespace
#因此打包前,把<imageName>设置为 docker_hosted/imageName:tag 就可以忽略这一步
docker tag imageID nexus的docker_hosted/hello-world:1.0
#上传
docker push nexus的docker_hosted/hello-world:1.0
以上是关于docker push 镜像到 nexus的主要内容,如果未能解决你的问题,请参考以下文章
使用gitlab+jenkins+nexus拉取springcloud并根据不同模块构建docker镜像,并推送到nexus里的docker仓库