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 e706f98 commit 915e389Copy full SHA for 915e389
spring-boot-example/src/test/java/de/rieckpil/blog/testcontainers/DockerComposeIT.java
@@ -17,9 +17,8 @@ class DockerComposeIT {
17
new DockerComposeContainer<>(new File("docker-compose-test.yml"))
18
.withExposedService("database_1", 5432, Wait.forListeningPort())
19
.withExposedService("keycloak_1", 8080,
20
- Wait.forHttp("/auth").forStatusCode(200)
21
- .withStartupTimeout(Duration.ofSeconds(90)))
22
- .withOptions("--compatibility");;
+ Wait.forHttp("/").forStatusCode(200)
+ .withStartupTimeout(Duration.ofSeconds(90)));
23
24
@Test
25
void dockerComposeTest() {
0 commit comments