当我使用 docker-maven-plugin 时,我遇到了一个问题:我的 pom.xml 的一部分看起来像:
<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.4.13</version>
<executions>
<execution>
<id>build-image</id>
<phase>package</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<imageName>${full.image.name}</imageName>
<!-- optionally overwrite tags every time image is built with docker:build -->
<forceTags>true</forceTags>
<imageTags>
<imageTag>${demo.image.tag}</imageTag>
<!--<imageTag>latest</imageTag>-->
</imageTags>
<dockerDirectory>${project.basedir}/docker</dockerDirectory>
<resources>
<resource>
<targetPath>/</targetPath>
<directory>${project.build.directory}</directory>
<include>${project.build.finalName}.jar</include>
</resource>
</resources>
<buildArgs>
<HTTP_PROXY>${http.proxy}</HTTP_PROXY>
<HTTPS_PROXY>${https.proxy}</HTTPS_PROXY>
<!--<VERSION>${demo.image.version}</VERSION>-->
<!--<BUILD_NUMBER>${build.num}</BUILD_NUMBER>-->
</buildArgs>
</configuration>
</execution>
</executions>
</plugin>
无论我是否添加最新,当我执行命令“mvn clean install”或“mvn clean install -DimageTag=1.0”(通过猜测)时,它将构建两个图像:1.0和最新,标签最新不是我想要的. 我只想要 ${demo.image.tag} 定义的 1.0。所以“最新”的注释不起作用。我该如何解决这个问题?
那么任何人都可以帮助我吗?非常感谢。