Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update .travis to latest docker version 17.07 #1373

Merged
merged 1 commit into from
Sep 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ env:
- TARGET="71"

before_install:
# check running "docker engine" and "docker-compose" version on travis
- docker --version
- docker-compose --version

# list docker-engine versions, usefull to update the docker engine on travis and trusty
#- apt-cache madison docker-engine
# - sudo apt-cache madison docker-engine

# update docker engine to the desired version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-ce=17.03.1~ce-0~ubuntu-trusty
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-ce=17.07.0~ce-0~ubuntu

- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/1.13.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- curl -L https://github.com/docker/compose/releases/download/1.16.1/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin

# check running "docker engine" and "docker-compose" version on travis
- docker --version
- docker-compose --version

before_script:
- sudo sysctl -w vm.max_map_count=262144

Expand Down