我想对fabric8的插件进行spring集成测试,但是当我尝试运行测试时,我得到了下一个错误:
无法创建泊坞窗访问对象
我有ubuntu,我认为我有很好的可配置码头工具,我没有遇到过dockerfiles或dockercompose的任何问题,所以它可能是权限问题还是我忘记了什么。
我经过了我的fabric8配置,它有一个mysql的图像和maven-failsafe-plugin进行集成测试。
<!--maven plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<environmentVariables>
<it-database.port>${it-database.port}</it-database.port>
</environmentVariables>
</configuration>
</plugin>
<!--fabric8 plugin -->
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.18.1</version>
<configuration>
<!--<dockerHost>unix:///var/run/docker.sock</dockerHost>-->
<dockerHost>tcp://0.0.0.0:2375</dockerHost>
</configuration>
<executions>
<execution>
<id>prepare-it-database</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
<configuration>
<images>
<image>
<name>mysql:5.7</name>
<alias>it-database</alias>
<run>
<ports>
<port>it-database.port:5432</port>
</ports>
<wait>
<log>database system is ready to accept connections</log>
<time>20000</time>
</wait>
</run>
</image>
</images>
</configuration>
</execution>
<execution>
<id>remove-it-database</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
答案 0 :(得分:1)
您确定docker守护程序正在侦听端口2375吗?您可能希望在pom.xml中尝试使用localhost或127.0.0.1而不是0.0.0.0。
你能输入
吗? <td><span class="placeholder">hello</span>
<span class="placeholder2">bye</span>
</td>
它也可能是一个糟糕的环境变量
答案 1 :(得分:0)
有点晚了,但是尝试重新启动Docker。我遇到了同样的问题,重新启动docker解决了问题。
Windows 10上的Docker桌面