最近感觉docker-compose
真是个好东西,镜像和依赖一样多,属实有点优秀,比如我发现这个东西就很好玩Maven
私服
这个我是深有感触的,我记得在第一家公司离职的时候,想回去研究一下当时封装的特别的厉害的JPa
框架,但是下载下来发现,很多的依赖我根本拉不下来,虽然没有办法学习了,但是不得不说,那个框架确实还是很厉害,虽然表很冗余,但是我觉得现在的业务场景冗余的表可能对于查询速度可能会更快,虽然这不是一个好的观点,废话不多说,直接上手吧
配置docker-compose.yml
version: '3.1'
services:
nexus:
restart: always
image: sonatype/nexus3
container_name: nexus
ports:
- 8082:8081
valumes:
- nexus-data:/nexus-data
valumes:
nexus-data:
启动
$ docker-compose up -d
直接访问http://192.168.226.128:8082
,登录的账号密码网上都说默认是 admin/admin123
实际测试发现我并不能登录,按照我们安装数据卷的地址,查看服务器/var/lib/docker/volume
数据卷下的 nexus_nexus-data/admin.password
直接拿这个密码就能登录了,登录之后默认会让你修改密码,这个密码会在后面上传的时候用
<!--插件仓库 -->
<pluginRepositories>
<pluginRepository>
<id>nexus</id>
<name>Nexus Plugin Repository</name>
<url>http://192.168.226.128:8082/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!--依赖仓库 -->
<repository>
<id>maven-resource</id>
<name>maven-resource</name>
<url>http://192.168.226.128:8082/repository/maven-resource/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
运行mven clean install
就可以观察下载地址了,我们的私服仓库会为我们做代理,优先级为本地-->私服-->中央厂库
私服代理完的,会保留一份,下次只要版本不变更,我们的私服就会有保存,当然自己的项目也可以直接上传为依赖
修改maven
的settings.xml
配置server
<server>
<id>nexus</id>
<username>admin</username>
<password>私服的登录密码</password>
</server>
运行mvn deploy
进行上传deploy
包含了install
,install
包含了package
不想用这种方式,也可以手动上传依赖,直接upload
拖动上传就可以
私服搭建到此为止了,后续更新具体的docker-compose
和docker
的具体学习,学习使我快乐,共同努力