Skip to content

Commit

Permalink
Fix Testcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
kifj committed Aug 17, 2024
1 parent df4ef89 commit 4534f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/x1/stomp/test/ContainerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ static ArtemisContainer createArtemisContainer() {

@SuppressWarnings("resource")
static GenericContainer<?> createWildflyContainer() {
return new GenericContainer<>(DockerImageName.parse("registry.x1/j7beck/x1-wildfly-jar-stomp-test:1.8.0-SNAPSHOT"))
return new GenericContainer<>(DockerImageName.parse("registry.x1/j7beck/x1-wildfly-jar-stomp-test:1.8"))
.dependsOn(POSTGRES).dependsOn(ARTEMIS).withNetwork(NETWORK).withEnv("ACTIVEMQ_SERVER", "activemq-artemis")
.withEnv("DB_SERVER", "postgres").withEnv("DB_PORT", "5432").withEnv("DB_USER", POSTGRES.getUsername())
.withEnv("DB_PASSWORD", POSTGRES.getPassword()).withExposedPorts(8080)
Expand Down

0 comments on commit 4534f51

Please sign in to comment.