其他分享
首页 > 其他分享> > 搭建 Maven Nexus 私服

搭建 Maven Nexus 私服

作者:互联网

docker-compose 脚本

version: '3'
services:
  nexus:
    container_name: nexus
    restart: always
    image: sonatype/nexus3:3.38.1
    ports:
      - 18081:8081
    volumes:
      - ./data:/nexus-data

nexus 用户是一个叫 200 的,很奇怪,需要给挂载卷权限 sudo mkdir data && sudo chmod 777 data

启动完成后进入页面,登录,初始密码在容器的 /nexus-data/admin.password 里,根据需要设置。

添加一下其他 Maven 仓库地址,比如阿里的 Setting -> Repositories -> Create Repository -> Maven2(Proxy) -> 填上 Name 以及 Remote storage (阿里 https://maven.aliyun.com/repository/public)

标签:初始密码,Nexus,sudo,私服,Maven,nexus,阿里,data
来源: https://www.cnblogs.com/seliote/p/16125605.html