我正在努力综合如何正确使用 maven-failsafe 和 fabric8-maven 插件。
我想运行集成测试,但在预集成测试阶段,启动一个运行数据库的 docker 容器,并在集成后阶段停止容器。
查看 fabric8 docker-maven-plugin文档,它指出这是可能的,但似乎没有一个示例说明了这一点。
更新#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>