You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2021/05/13 15:48:03 UTC

[geode] branch develop updated: GEODE-9257: Use local docker-compose binary in DockerComposeRule (#6462)

This is an automated email from the ASF dual-hosted git repository.

jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 06198c1  GEODE-9257: Use local docker-compose binary in DockerComposeRule (#6462)
06198c1 is described below

commit 06198c1f5babf96983fd47857f59879af189f8b2
Author: Jens Deppe <jd...@vmware.com>
AuthorDate: Thu May 13 08:46:45 2021 -0700

    GEODE-9257: Use local docker-compose binary in DockerComposeRule (#6462)
---
 .../acceptanceTest/java/org/apache/geode/rules/DockerComposeRule.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-assembly/src/acceptanceTest/java/org/apache/geode/rules/DockerComposeRule.java b/geode-assembly/src/acceptanceTest/java/org/apache/geode/rules/DockerComposeRule.java
index 25d1765..f799077 100644
--- a/geode-assembly/src/acceptanceTest/java/org/apache/geode/rules/DockerComposeRule.java
+++ b/geode-assembly/src/acceptanceTest/java/org/apache/geode/rules/DockerComposeRule.java
@@ -96,6 +96,7 @@ public class DockerComposeRule extends ExternalResource {
         composeContainer = new DockerComposeContainer<>("compose", new File(composeFile));
         exposedServices.forEach((service, ports) -> ports
             .forEach(p -> composeContainer.withExposedService(service, p)));
+        composeContainer.withLocalCompose(true);
 
         composeContainer.start();