一、導入docker maven插件java
<!-- 生成時間戳 -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>timestamp-property</id>
<goals>
<goal>timestamp-property</goal>
</goals>
</execution>
</executions>
<configuration>
<name>current.time</name>
<pattern>yyyyMMddHHmmss</pattern>
<timeZone>GMT+8</timeZone>
</configuration>
</plugin>docker
<!-- 打包生成鏡像、push鏡像到私有鏡像中心 -->
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<id>default</id><!-- 要綁定到的生命週期的階段 -->
<phase>install</phase><!-- 要綁定到的生命週期的階段 -->
<goals> <!-- 要綁定的插件的目標 -->
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- 私有鏡像中心的用戶名 -->
<username>registry</username>
<!-- 私有鏡像中心的密碼 -->
<password>******</password>
<!-- 172.16.1.146:私有鏡像中心地址; wondertek/${project.artifactId}:鏡像名稱-->
<repository>172.16.1.146/wondertek/${project.artifactId}</repository>
<!-- 鏡像版本號 -->
<tag>${project.version}-${current.time}</tag>shell
文章標題app
文章分類maven
<buildArgs>
<!-- 參數,提供給dockerfile使用 -->
<JAR_FILE>target/docker-test-1.0.0.jar</JAR_FILE>
</buildArgs>ui
# 拉取基礎鏡像
FROM hub.c.163.com/library/java:8-jdk
# 鏡像的做者
MAINTAINER csp@xxx.comspa
#掛載目錄,經過 VOLUME 指令建立的掛載點,沒法指定主機上對應的目錄,是自動生成的
VOLUME ["/data1","/data2"]插件
RUN ["mkdir", "-p", "/app"]code
#結合maven插件dockerfile-maven-plugin的打包使用
ARG JAR_FILE
ADD ${JAR_FILE} /app/app.jar生命週期
#爲後面的 RUN, CMD, ENTRYPOINT, ADD 或 COPY 指令設置鏡像中的當前工做目錄。
#WORKDIR /usr/local/docker/test
#拷貝當前目錄文件到容器/app
#COPY . /app
#與 COPY 相似,從 build context 複製文件到鏡像。不一樣的是,若是 src 是歸檔文件(tar, zip, tgz, xz 等),文件會被自動解壓到 dest。
#ADD src dest
#設置環境變量,環境變量可被後面的指令使用
ENV EVN_SET_TEST "WELCOME TO DOCKERFILE CONTAINER!"
##################
# RUN、CDM、ENTRYPOINT 命令都包含兩種格式:Shell 格式和 Exec 格式
# CMD還能夠放在ENTRYPOINT後,爲其傳遞參數。
##### shell 格式:######
## 底層會調用 /bin/sh -c <command>
# 在容器中運行指定的命令
RUN echo $EVN_SET_TEST
# 容器啓動命令 只有最後一個生效,CMD 能夠被 docker run 以後的參數替換。
#只有最後一個生效
CMD echo "CMD Hello world"
#配置容器啓動時運行的命令
ENTRYPOINT echo "ENTRYPOINT Hello, $EVN_SET_TEST"
###### Exec 格式: #####
## 當指令執行時,會直接調用 <command>,不會被 shell 解析
# ENTRYPOINT ["/bin/echo", "Hello, $EVN_SET_TEST"]
# 正確寫法應該爲:
# ENTRYPOINT ["/bin/sh", "-c", "echo Hello, $EVN_SET_TEST"]
# 爲Exec 格式的ENTRYPOINT傳遞參數,結果輸出Hello, $EVN_SET_TEST dockerfile world
# CMD ["dockerfile world"]
#只有最後一個生效
ENTRYPOINT ["java","-jar","/app/app.jar"]
#表示哪一個端口提供服務的提示,宿主機若是要訪問,須要結合-P參數聯合使用。
EXPOSE 8080
build鏡像: mvn clean package dockerfile:build -DskipTests
發佈鏡像不會編譯:mvn dockerfile:push
編譯發佈: mvn clean install -Ddockerfile.skip
命令 說明 dockerfile.skip Disables the entire dockerfile plugin; all goals become no-ops. dockerfile.build.skip Disables the build goal; it becomes a no-op. dockerfile.tag.skip Disables the tag goal; it becomes a no-op. dockerfile.push.skip Disables the push goal; it becomes a no-op.