maven-failsafe プラグインと fabric8-maven プラグインを一緒に正しく使用する方法を統合するのに苦労しています。
統合テストを実行したいのですが、統合テスト前の段階で、DB を実行する Docker コンテナーを開始し、統合後段階でコンテナーを停止します。
fabric8 docker-maven-plugin documentationを見ると、これは可能であると記載されていますが、これを説明する例はないようです。
更新 #1:
これは私にとってうまくいった構成です:
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.15.9</version>
<executions>
<execution>
<id>start-neo4j</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop-neo4j</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<images>
<image>
<alias>neo4j</alias>
<name>neo4j:2.3.2-enterprise</name>
<run>
<ports>
<port>7474</port>
</ports>
<wait>
<log>Starting...</log>
<time>20000</time>
</wait>
</run>
</image>
</images>
</configuration>
</plugin>