Skip to content

Commit

Permalink
Enable Solace PubSub+ Manager (#7411)
Browse files Browse the repository at this point in the history
`PubSub+ Manager` is available in port 8080. Also, default credentials
have been set.
  • Loading branch information
eddumelendez committed Aug 11, 2023
1 parent 147a49a commit 104af18
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* <p>
* Exposed ports:
* <ul>
* <li>Console: 8080</li>
* <li>AMQP: 5672</li>
* <li>MQTT: 1883</li>
* <li>HTTP: 9000</li>
Expand Down Expand Up @@ -69,6 +70,9 @@ public SolaceContainer(DockerImageName dockerImageName) {
cmd.getHostConfig().withShmSize(SHM_SIZE).withUlimits(new Ulimit[] { new Ulimit("nofile", 2448L, 6592L) });
});
this.waitStrategy = Wait.forLogMessage(SOLACE_READY_MESSAGE, 1).withStartupTimeout(Duration.ofSeconds(60));
withExposedPorts(8080);
withEnv("username_admin_globalaccesslevel", "admin");
withEnv("username_admin_password", "admin");
}

@Override
Expand Down

0 comments on commit 104af18

Please sign in to comment.