Skip to content

Instantly share code, notes, and snippets.

@dgreyling
Forked from wdullaer/install.sh
Last active August 11, 2016 02:31
Show Gist options
  • Save dgreyling/6afe249ece9806bd804110e3426f004c to your computer and use it in GitHub Desktop.
Save dgreyling/6afe249ece9806bd804110e3426f004c to your computer and use it in GitHub Desktop.
Install Latest Docker and Docker-compose on Ubuntu
# Ask for the user password
# Script only works if sudo caches the password for a few minutes
sudo true
# Install kernel extra's to enable docker aufs support
# Alternatively you can use the official docker install script
wget -qO- https://get.docker.com/ | sh
# Install docker-compose
sudo sh -c "curl -L https://github.com/docker/compose/releases/download/1.8.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose"
sudo chmod +x /usr/local/bin/docker-compose
sudo sh -c "curl -L https://raw.githubusercontent.com/docker/compose/1.8.0/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment