美文网首页
CentOS7 搭建 nexus

CentOS7 搭建 nexus

作者: 咸鱼_dd61 | 来源:发表于2018-08-20 20:44 被阅读0次

nexus是一种maven私服软件,很方便项目构建和管理。

本人使用的是nexus3的镜像的tar包,版本3.13.0。

前提:已经安装了docker

1、把tar包上传至镜像

docker load < nexus3.tar   ##注意路径问题,不是当前目录要使用绝对路径

用docker images查看,它的repository为 sonatype/nexus3

2 、docker run -p 8081:8081 sonatype/nexus3

docker ps 查看运行情况

3、在浏览器输入 http://localhost:8081访问

localhost换成你的docker的宿主机,建立时间较长,等一会刷新网页就有了。

登陆的初始账号:admin 

初始密码 : admin123

登陆后就可以点击设置,选择repositories,开始创建你的镜像仓库了

相关文章

网友评论

      本文标题:CentOS7 搭建 nexus

      本文链接:https://www.haomeiwen.com/subject/dgqriftx.html