美文网首页
docker指南系列之部署springboot项目

docker指南系列之部署springboot项目

作者: 爪哇部落格 | 来源:发表于2020-01-05 22:41 被阅读0次

版本信息

docker版本信息

Client:
 Version:         1.13.1
 API version:     1.26
 Package version: docker-1.13.1-103.git7f2769b.el7.centos.x86_64
 Go version:      go1.10.3
 Git commit:      7f2769b/1.13.1
 Built:           Sun Sep 15 14:06:47 2019
 OS/Arch:         linux/amd64

Server:
 Version:         1.13.1
 API version:     1.26 (minimum version 1.12)
 Package version: docker-1.13.1-103.git7f2769b.el7.centos.x86_64
 Go version:      go1.10.3
 Git commit:      7f2769b/1.13.1
 Built:           Sun Sep 15 14:06:47 2019
 OS/Arch:         linux/amd64
 Experimental:    false

maven docker plugin 版本信息

<build>
    <plugins>
        <plugin>
            <groupId>com.spotify</groupId>
            <artifactId>dockerfile-maven-plugin</artifactId>
            <version>0.4.13</version>
        </plugin>
    </plugins>
</build>

项目相关信息

创建Dockerfile文件

目录结构如下:

Docker内容如下:

FROM java:8
ADD ./docker-0.0.1.jar  ./app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "./app.jar"]

项目pom.xml文件信息

pom.xml文件基本内容:
<?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.yee</groupId>
    <artifactId>docker</artifactId>
    <version>0.0.1</version>
    <packaging>jar</packaging>

    <name>docker</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.6.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.repository>XXXX</docker.repository>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.yee.docker.DockerApplication</mainClass>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
在pom文件中添加docker-plugin相关信息:

此方式依赖Dockerfile

<plugin>
  <groupId>com.spotify</groupId>
  <artifactId>docker-maven-plugin</artifactId>
  <version>0.4.13</version>
  <configuration>
    <imageName>${project.build.finalName}</imageName>
    <dockerDirectory>./</dockerDirectory>
    <resources>
      <rescource>
        <targetPath>/</targetPath>
        <directory>${project.build.directory}</directory>
        <include>${project.build.finalName}.jar</include>
      </rescource>
    </resources>
  </configuration>
  <executions>
    <execution>
      <phase>install</phase>
      <goals>
        <goal>build</goal>
      </goals>
    </execution>
    <execution>
      <id>tag-image</id>
      <phase>install</phase>
      <goals>
        <goal>tag</goal>
      </goals>
      <configuration>
        <image>${project.build.finalName}</image>
        <newName>${repository.url}/${project.build.finalName}</newName>
      </configuration>
    </execution>
    <execution>
      <id>push-image</id>
      <phase>install</phase>
      <goals>
        <goal>push</goal>
      </goals>
      <configuration>
        <imageName>${repository.url}/${project.build.finalName}</imageName>
      </configuration>
    </execution>
    <execution>
      <id>push-image</id>
      <phase>install</phase>
      <goals>
        <goal>push</goal>
      </goals>
      <configuration>
        <imageName>${docker.repository}/${project.build.finalName}</imageName>
      </configuration>
    </execution>
  </executions>
</plugin>
在pom文件中配置Dockerfile相关信息(即可以不配置之前提到的Dockerfile):

此方式不依赖Dockerfile

<plugin>
    <groupId>com.spotify</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>0.4.13</version>
    <configuration>
        <imageName>${project.build.finalName}</imageName>
        <dockerDirectory>./</dockerDirectory>
        <baseImage>java:8</baseImage>
        <cmd>["java", "-version"]</cmd>
        <entryPoint>["java", "-jar", "${project.build.finalName}.jar"]</entryPoint>
        <resources>
            <rescource>
                <targetPath>/</targetPath>
                <directory>${project.build.directory}</directory>
                <include>${project.build.finalName}.jar</include>
            </rescource>
        </resources>
    </configuration>
    <executions>
        <execution>
            <phase>install</phase>
            <goals>
                <goal>build</goal>
            </goals>
        </execution>
        <execution>
            <id>tag-image</id>
            <phase>install</phase>
            <goals>
                <goal>tag</goal>
            </goals>
            <configuration>
                <image>${project.build.finalName}</image>
                <newName>${repository.url}/${project.build.finalName}</newName>
            </configuration>
        </execution>
        <execution>
            <id>push-image</id>
            <phase>install</phase>
            <goals>
                <goal>push</goal>
            </goals>
            <configuration>
                <imageName>${repository.url}/${project.build.finalName}</imageName>
            </configuration>
        </execution>
    </executions>
</plugin>

创建镜像

相关文章

网友评论

      本文标题:docker指南系列之部署springboot项目

      本文链接:https://www.haomeiwen.com/subject/kyocactx.html