Skip to content

Instantly share code, notes, and snippets.

@emetsger
Last active February 15, 2019 14:36
Show Gist options
  • Save emetsger/56e1f1b4edbd447768af628b77500e63 to your computer and use it in GitHub Desktop.
Save emetsger/56e1f1b4edbd447768af628b77500e63 to your computer and use it in GitHub Desktop.
Sample docker-maven-plugin configuration
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<configuration>
<images>
<image>
<name>oa-pass/deposit-services-core:%v</name>
</image>
</images>
</configuration>
<executions>
<execution>
<id>build-before-its</id>
<phase>pre-integration-test</phase>
<goals>
<goal>build</goal>
</goals>
</execution>
<execution>
<id>push-after-its</id>
<phase>verify</phase>
<goals>
<goal>push</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment