SpringBoot 2.4.0开始官方插件增加了对docker的支持
阿里云
登录阿里云容器镜像服务
创建命名空间
获取访问凭证(这里为了演示方便,采用固定密码方式,企业项目需根据实际情况设置密码或子账号访问等)
pom.xml检查是否为:
1 2 3 4 5 6
| <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.0</version> <relativePath/> </parent>
|
插件中加入docker配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <image> <name>registry.cn-shanghai.aliyuncs.com/jonesun/${project.artifactId}:${project.version}</name> <publish>true</publish> <builder>registry.cn-shanghai.aliyuncs.com/sannmizu/builder:base</builder>
</image> <docker>
<publishRegistry> <username>xxx</username> <password>xxx</password> <url>registry.cn-shanghai.aliyuncs.com</url> </publishRegistry> </docker> </configuration> </plugin>
|
maven插件有两种方式构建镜像:
插件与本地docker daemon通信来构建镜像,需要在windows安装docker
插件使用远程连接与docker daemon通信来构建镜像,需要远程服务器上面的docker开启远程连接
安装私有镜像仓库
拉取镜像
登录
docker login –username=sunr922@163.com registry.cn-shanghai.aliyuncs.com
docker pull registry.cn-shanghai.aliyuncs.com/jonesun/tool:[镜像版本号]
docker run -p 8888:8888 registry.cn-shanghai.aliyuncs.com/jonesun/tool:[镜像版本号]