docker安装nexus

docker 安装 nexus

1.拉取镜像

docker pull sonatype/nexus3

2.运行容器

docker run -d -p 8081:8081  -p 8082:8082 --name nexus --restart=always -v /opt/docker-nexus/data:/var/nexus-data sonatype/nexus3

3.查看默认密码

进入容器
docker exec -it name bash
cat /nexus-data/admin.password

阿里云提供免费仓库

[INFO] 阿里云Maven中央仓库为阿里云云效提供的公共代理仓库,云效也提供了免费、可靠的Maven私有仓库Packages,欢迎您体验使用。www.aliyun.com/product/yun…

推送命令

mvn clean install org.apache.maven.plugins:maven-deploy-plugin:2.8:deploy -DskipTests

本地配置nexus仓库

1.启动好nexus仓库后

2.需要推的包的pom文件配置

这个是放项目里的pom文件(也可以配置在本地setting文件里),那个项目需要deploy就用这个配置,当然前提是本地maven的setting文件也必须要配置账号密码

<distributionManagement>
        <repository>
            <id>admin</id><!--账号-->
            <name>maven-releases</name>
            <url>http://ip:8081/repository/maven-releases/</url>
        </repository>
        <snapshotRepository>
            <id>admin</id>
            <name>maven-snapshots</name>
            <url>http://ip:8081/repository/maven-snapshots/</url>
        </snapshotRepository>
</distributionManagement>

3.本地maven setting文件配置账号密码

  <servers>
    
    <!-- Maven私服配置 -->
    <server>
        <id>admin</id> <!-- id 也是用户名 -->
        <username>admin</username>  <!-- 用户名-->
        <password>xxx</password> <!-- 密码-->
    </server>
  </servers>

4.推送到私服仓库

  • install: 是把jar推送到本地的maven仓库
  • deploy:是把jar推送到你配置的远端仓库

image.png

5.本地maven setting文件 配置私服仓库,拉取依赖

<profiles>  
    <profile>
      <!-- maven私服 -->
      <id>maven-nexus</id>
      <repositories>
          <repository>
              <id>admin</id>
              <name>admin</name>
              <url>http://ip:8081/repository/maven-public/</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </repository>
      </repositories>
      <pluginRepositories>
          <pluginRepository>
              <id>admin</id>
              <name>admin</name>
              <url>http://ip:8081/repository/maven-public/</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </pluginRepository>
      </pluginRepositories>
   </profile>
</profiles>
<activeProfiles>
  <!-- activeProfile的属性值就是上面profiles列表种profile的id,若不存在则忽视 -->
  <activeProfile>maven-nexus</activeProfile>
  <!-- <activeProfile>rdc</activeProfile> -->
</activeProfiles>
​
​

遇到的问题

jar不能重复deploy,解决办法很简单,把仓库设置为允许重复deploy就行了

image-20230610182502750.png

遗留问题

  • 仓库下载可以配置多个,第一个地址下载不到就会去第二个地址下载,目前看就是写的顺序,在前面的配置先下载,都下载不到才会报错,暂时没问题
  • 仓库deploy好像不能同时deploy两个地址,只会选取一个,可以根据来指定,但是两个都填进去的话也只会默认选一个,目前看是优先选私服,其次选阿里云的nexus,有点奇怪,不过影响不大
<activeProfiles>
  <!-- activeProfile的属性值就是上面profiles列表种profile的id,若不存在则忽视 -->
  <activeProfile>maven-nexus</activeProfile>
  <!-- 两个都有的情况下默认会选soon-nexus 而不是aliyun-nexus -->
  <activeProfile>aliyun-nexus</activeProfile>
  <activeProfile>soon-nexus</activeProfile> 
</activeProfiles>

好文推荐

Linux下使用Nexus创建maven私服-腾讯云开发者社区-腾讯云 (tencent.com)

© 版权声明
THE END
喜欢就支持一下吧
点赞0

Warning: mysqli_query(): (HY000/3): Error writing file '/tmp/MYcNcPLo' (Errcode: 28 - No space left on device) in /www/wwwroot/583.cn/wp-includes/class-wpdb.php on line 2345
admin的头像-五八三
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

图形验证码
取消
昵称代码图片