We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1281c9 commit 12955e8Copy full SHA for 12955e8
src/systemTest/java/com/hivemq/cli/commands/distribution/DockerImageST.java
@@ -36,7 +36,9 @@
36
37
public class DockerImageST {
38
39
- final @NotNull GenericContainer<?> mqttCli = new GenericContainer<>(OciImages.getImageName("hivemq/mqtt-cli"));
+ @SuppressWarnings("resource")
40
+ final @NotNull GenericContainer<?> mqttCli = new GenericContainer<>(OciImages.getImageName("hivemq/mqtt-cli")) //
41
+ .withExtraHost("host.docker.internal","host-gateway");
42
43
@RegisterExtension
44
@SuppressWarnings("JUnitMalformedDeclaration")
0 commit comments