From 4f9422ec855f3add8c07d638c6fbe6d60ce65011 Mon Sep 17 00:00:00 2001 From: Taylor Wrobel Date: Sat, 24 Jun 2017 10:36:59 -0700 Subject: [PATCH] Update docker dependency version to fix Tavis builds Tavis has updated its docker images, and as part of the update, no longer includes support for the (deprevated) docker-engine package, moving instead to docker-ce. See https://blog.travis-ci.com/2017-06-21-trusty-updates-2017-Q2-launch for details of the package change. This updates the travis configuration to pin the docker library version to 17.05.0 and installs the corresponding version of docker-ce in the install script. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6581f68..50dbf36 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,8 @@ services: install: - make deps - - (cd $GOPATH/src/github.com/docker/docker && git fetch --all --tags --prune && git checkout v1.13.0) - - sudo apt-get update && sudo apt-get install docker-engine=1.13.0* + - (cd $GOPATH/src/github.com/docker/docker && git fetch --all --tags --prune && git checkout v17.05.0-ce) + - sudo apt-get update && sudo apt-get install docker-ce=17.05.0* - go get github.com/mattn/goveralls script: