Skip to content

Commit

Permalink
Use local docker
Browse files Browse the repository at this point in the history
  • Loading branch information
breskeby committed Nov 20, 2023
1 parent a03e2b3 commit c8e06cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MinioFixtureTestContainer implements TestRule {
private ComposeContainer createContainer(List<String> services) {
ComposeContainer composeContainer = new ComposeContainer(resolveFixtureHome());
services.forEach(service -> composeContainer.withExposedService(service, servicePort, Wait.forListeningPort()));
return composeContainer;
return composeContainer.withLocalCompose(true);
}

@NotNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class S3FixtureTestContainerRule implements S3Fixture {
private ComposeContainer createContainer(List<String> services) {
ComposeContainer composeContainer = new ComposeContainer(resolveFixtureHome());
services.forEach(service -> composeContainer.withExposedService(service, servicePort, Wait.forListeningPort()));
return composeContainer;
return composeContainer.withLocalCompose(true);
}

@NotNull
Expand Down

0 comments on commit c8e06cb

Please sign in to comment.