-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.bolingcavalry</groupId> | ||
<artifactId>mavendockerplugindemo</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>mavendockerplugindemo</name> | ||
<description>maven docker plugin demo</description> | ||
|
||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>1.5.9.RELEASE</version> | ||
<relativePath/> | ||
</parent> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<java.version>1.8</java.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<!--这是原有的spring boot插件--> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
<!--新增的docker maven插件--> | ||
<plugin> | ||
<groupId>com.spotify</groupId> | ||
<artifactId>docker-maven-plugin</artifactId> | ||
<version>0.4.12</version> | ||
<!--docker镜像相关的配置信息--> | ||
<configuration> | ||
<!--镜像名,要带上私有服务器IP和端口--> | ||
<imageName>192.168.119.148:5000/${project.artifactId}:${project.version}</imageName> | ||
<!--TAG,这里用工程版本号--> | ||
<imageTags> | ||
<imageTag>${project.version}</imageTag> | ||
</imageTags> | ||
<!--镜像的FROM,使用java官方镜像--> | ||
<baseImage>java:8u111-jdk</baseImage> | ||
<!--该镜像的容器启动后,直接运行spring boot工程--> | ||
<entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint> | ||
<!--构建镜像的配置信息--> | ||
<resources> | ||
<resource> | ||
<targetPath>/</targetPath> | ||
<directory>${project.build.directory}</directory> | ||
<include>${project.build.finalName}.jar</include> | ||
</resource> | ||
</resources> | ||
<registryUrl>192.168.119.148:5000</registryUrl> | ||
<pushImage>true</pushImage> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.bolingcavalry</groupId> | ||
<artifactId>mavendockerplugindemo</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>mavendockerplugindemo</name> | ||
<description>maven docker plugin demo</description> | ||
|
||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>1.5.9.RELEASE</version> | ||
<relativePath/> <!-- lookup parent from repository --> | ||
</parent> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<java.version>1.8</java.version> | ||
<docker.repostory>registry.cn-shenzhen.aliyuncs.com</docker.repostory> | ||
<docker.registry.name>bolingcavalry</docker.registry.name> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<!--spring boot maven插件--> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
<!--docker maven插件--> | ||
<plugin> | ||
<groupId>com.spotify</groupId> | ||
<artifactId>docker-maven-plugin</artifactId> | ||
<version>0.4.12</version> | ||
<!--docker镜像相关的配置信息--> | ||
<configuration> | ||
<!--镜像名,这里用工程名--> | ||
<imageName>${docker.repostory}/${docker.registry.name}/${project.artifactId}:${project.version}</imageName> | ||
<!--TAG,这里用工程版本号--> | ||
<imageTags> | ||
<imageTag>${project.version}</imageTag> | ||
</imageTags> | ||
<!--镜像的FROM,使用java官方镜像--> | ||
<baseImage>java:8u111-jdk</baseImage> | ||
<!--该镜像的容器启动后,直接运行spring boot工程--> | ||
<entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint> | ||
<!--构建镜像的配置信息--> | ||
<resources> | ||
<resource> | ||
<targetPath>/</targetPath> | ||
<directory>${project.build.directory}</directory> | ||
<include>${project.build.finalName}.jar</include> | ||
</resource> | ||
</resources> | ||
<serverId>docker-aliyun</serverId> | ||
<registryUrl>${docker.repostory}</registryUrl> | ||
<pushImage>true</pushImage> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
||
</project> |