距离上一次更新该文章已经过了 657 天,文章所描述的內容可能已经发生变化,请留意。
Maven配合fabric8插件整合使用
<谨供参考>
自建镜像仓库并推送到远端
1 2 3 4 5 6 7 8 9
| <docker.plugin.version>0.35.0</docker.plugin.version>
<docker.host>http://localhost:2375</docker.host>
<docker.registry>docker.io</docker.registry>
<docker.namespace>xxx</docker.namespace> <docker.username>xxx</docker.username> <docker.password>xxx</docker.password>
|
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <layers> <enabled>true</enabled> </layers> </configuration> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>${docker.plugin.version}</version> <executions> <execution> <id>build-image</id> <phase>package/install/deploy</phase> <goals> <goal>build</goal> <goal>push</goal> <goal>remove</goal> </goals> </execution> </executions> <configuration> <dockerHost>${docker.host}</dockerHost> <registry>${docker.registry}</registry> <authConfig> <push> <username>${docker.username}</username> <password>${docker.password}</password> </push> </authConfig> <images> <image> <name>${docker.registry}/${docker.namespace}/${project.name}:${project.version}</name> <build> <dockerFile>${project.basedir}/Dockerfile</dockerFile> </build> </image> </images> </configuration> </plugin> </plugins> </build>
|
执行mvn clean package/install
查看成果图