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 147a49a commit 104af18Copy full SHA for 104af18
modules/solace/src/main/java/org/testcontainers/solace/SolaceContainer.java
@@ -20,6 +20,7 @@
20
* <p>
21
* Exposed ports:
22
* <ul>
23
+ * <li>Console: 8080</li>
24
* <li>AMQP: 5672</li>
25
* <li>MQTT: 1883</li>
26
* <li>HTTP: 9000</li>
@@ -69,6 +70,9 @@ public SolaceContainer(DockerImageName dockerImageName) {
69
70
cmd.getHostConfig().withShmSize(SHM_SIZE).withUlimits(new Ulimit[] { new Ulimit("nofile", 2448L, 6592L) });
71
});
72
this.waitStrategy = Wait.forLogMessage(SOLACE_READY_MESSAGE, 1).withStartupTimeout(Duration.ofSeconds(60));
73
+ withExposedPorts(8080);
74
+ withEnv("username_admin_globalaccesslevel", "admin");
75
+ withEnv("username_admin_password", "admin");
76
}
77
78
@Override
0 commit comments