Docker 安装 Nexus3
原创
©著作权归作者所有:来自51CTO博客作者Tom马的原创作品,请联系作者获取转载授权,否则将追究法律责任
1、创建 文件夹
mkdir -p /docker/nexus/nexus-data
chmod -R 777 /docker/nexus/nexus-data
2、启动脚本
vim start.sh
# 内容
docker rm -f nexus || true
docker run --name nexus \
-p 8081:8081 \
-v /docker/nexus/nexus-data:/nexus-data \
--restart=always \
-d sonatype/nexus3
3、仓库说明
maven-central:maven中央库,默认从https://repo1.maven.org/maven2 拉取 jar 包
maven-releases:私库发行版 jar,初次安装完后,将 Deployment policy 设置为 Allow redeploy
maven-snapshots:私库快照(调试版本)jar
maven-public:仓库分组,把上面三个仓库组合在一起对外提供服务,在本地maven基础配置settings.xml或项目pom.xml中使用
4、Maven 配置 settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:\MavenRepository</localRepository>
<profiles>
<profile>
<id>dev</id>
<repositories>
<repository>
<id>local-nexus</id>
<url>http://192.168.2.107:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>dev</activeProfile>
</activeProfiles>
<servers>
<server>
<id>nexus-releases</id>
<username>admin</username>
<password>admin123</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>admin</username>
<password>admin123</password>
</server>
</servers>
</settings>
5、修改 项目里面的 pom.xml
# 配置私服发布地址,repository 里 id 需要和 maven 配置 setting.xml 里的 server id 名称保持一致
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Releases</name>
<url>http://192.168.2.107:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshot</name>
<url>http://192.168.2.107:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
6、idea 中 发布
若项目版本号末尾带有 -SNAPSHOT,则会发布到snapshots快照版本仓库
若项目版本号末尾带有 -RELEASES 或什么都不带,则会发布到releases正式版本仓库

7、查看
