自动化测试Docker容器Java学习笔记

Docker:使用 Maven 插件构建镜像

2018-02-08  本文已影响69人  聪明的奇瑞

快速入门

<plugin>
    <groupId>com.spotify</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>0.4.13</version>
    <configuration>
        <imageName>linyuantongxue/docker-demo:0.0.1</imageName> // 指定镜像名称,linyuantongxue  是仓库名称(对应 DockerHub 用户名),docker-demo 是镜像名称(对应 DockerHub 仓库名),0.0.1 是标签名称(相当于版本号)
        <baseImage>java</baseImage>     // 指定基础镜像,等同 FROM 指令
        <entryPoint>["java","-jar","app.jar"]</entryPoint>       // 等同于 ENTRYPOINT 指令
        <resources>
            <resource>
                <targetPath>/</targetPath>  
                <directory>${project.build.directory}</directory>   // 指定要复制的根目录,${project.build.directory} 表示 target 目录
                <include>${project.build.finalName}.jar</include>   // 指定要复制的文件,${project.build.finalName}.jar 指打包后的 jar 文件
            </resource>
        </resources>
    </configuration>
</plugin>
mvn clean package docker:build

读取 Dockerfile 文件

<plugin>
    <groupId>com.spotify</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>0.4.13</version>
    <configuration>
        <dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>     // 指定要读取的 Dockerfile 文件
        <imageName>linyuantongxue/docker-demo:0.0.1</imageName>  // 指定镜像名称,linyuantongxue  是仓库名称(对应 DockerHub 用户名),docker-demo 是镜像名称(对应 DockerHub 仓库名),0.0.1 是标签名称(相当于版本号)
        <resources>
            <resource>
                <targetPath>/</targetPath>  
                <directory>${project.build.directory}</directory>   // 指定要复制的根目录,${project.build.directory} 表示 target 目录
                <include>${project.build.finalName}.jar</include>   // 指定要复制的文件,${project.build.finalName}.jar 指打包后的 jar 文件
            </resource>
        </resources>
    </configuration>
</plugin>

将插件绑定在某个 phase 执行

<plugin>
    <groupId>com.spotify</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>0.4.13</version>
    // 在 maven 生命周期 package 中执行 build 构建目标
    <executions>
        <execution>
            <id>build-image</id>
            <phase>package</phase>
            <goals>
                <goal>build</goal>
            </goals>
        </execution>
    </executions>
    // $$$$$$$$$$$$$$$$华丽的分割线$$$$$$$$$$$$$$$$
    <configuration>
        <imageName>linyuantongxue/docker-demo:0.0.1</imageName>
        <baseImage>java</baseImage>
        <entryPoint>["java","-jar","app.jar"]</entryPoint>
        <resources>
            <resource>
                <targetPath>/</targetPath>
                <directory>${project.build.directory}</directory>
                <include>${project.build.finalName}.jar</include>
            </resource>
        </resources>
    </configuration>
</plugin>

推送镜像

<servers>
    <server>
        <id>docker-hub</id>
        # DockerHub 该网站的用户名必须全部为小写才正确
        <username>linyuantongxue</username>
        <password>765371578Ly</password>
        <configuration>
            <email>765371578@qq.com</email>
        </configuration>
    </server>
</servers>
<plugin>
    <groupId>com.spotify</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>0.4.13</version>
    <configuration>
        <imageName>linyuantongxue/docker-demo:0.0.1</imageName>
        <baseImage>java</baseImage>
        <entryPoint>["java","-jar","app.jar"]</entryPoint>
        <resources>
            <resource>
                <targetPath>/</targetPath>
                <directory>${project.build.directory}</directory>
                <include>${project.build.finalName}.jar</include>
            </resource>
        </resources>
        <!--与配置文件 setting.xml 中的 server.id 一致,用于推送镜像-->
        <serverId>docker-hub</serverId>
    </configuration>
</plugin>
mvn clean package docker:build -DpushImage
<configuration>
    <imageName>linyuantongxue/docker-demo</imageName>
    <imageTags>
        <imageTag>0.0.1</imageTag>
        <imageTag>latest</imageTag>
    </imageTags>
</configuration>
mvn clean package:build -DpushImageTags -DdockerImageTags=latest -DdockerImageTags=another-tag
<configuration>
    // .......
    <forceTags>true</forceTags>
</configuration>
上一篇 下一篇

猜你喜欢

热点阅读