From fb4e54c799507154b465cbedea9adb7a7ba73cd8 Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Fri, 3 Feb 2017 17:21:17 -0800 Subject: [PATCH] Install docker-compose 1.10 manually Randomly, the docker-compose installed by pip was downgraded to a version that couldn't parse version-2-style docker-compose files. This attempts to get version 1.10 manually. --- circle.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index d5d6c70ad..a15a0a4f8 100644 --- a/circle.yml +++ b/circle.yml @@ -6,7 +6,8 @@ machine: dependencies: pre: - - sudo pip install docker-compose + - sudo curl -L "https://github.com/docker/compose/releases/download/1.10.0/docker-compose-linux-x86_64" -o /usr/local/bin/docker-compose + - sudo chmod +x /usr/local/bin/docker-compose - docker-compose -f docker-compose-integration.yml up -d --force-recreate test: