Skip to content

Commit

Permalink
use Docker Compose inside container (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
rieckpil authored Aug 12, 2024
1 parent f3166a3 commit 6403c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/broken-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

- name: Check for broken links
run: |
Expand Down
4 changes: 1 addition & 3 deletions src/test/java/de/rieckpil/courses/AbstractWebTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ public abstract class AbstractWebTest {
.withLogConsumer("keycloak_1", new Slf4jLogConsumer(LOG))
.withLogConsumer("database_1", new Slf4jLogConsumer(LOG))
.withLogConsumer("sqs_1", new Slf4jLogConsumer(LOG))
.withOptions("--compatibility") // See issue
// https://github.com/testcontainers/testcontainers-java/issues/4565
.withLocalCompose(true);
.withOptions("--compatibility");

@RegisterExtension
static ScreenShooterExtension screenShooterExtension =
Expand Down

0 comments on commit 6403c6e

Please sign in to comment.