Skip to content

Instantly share code, notes, and snippets.

@StephenSorriaux
Created November 8, 2018 11:34
Show Gist options
  • Save StephenSorriaux/cb9544095c33cf5ff2a269d149fa903d to your computer and use it in GitHub Desktop.
Save StephenSorriaux/cb9544095c33cf5ff2a269d149fa903d to your computer and use it in GitHub Desktop.
Install docker-ce on Ubuntu Wily (15.04-15.10)
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
echo "deb http://cz.archive.ubuntu.com/ubuntu trusty main" >> /etc/apt/sources.list
echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu trusty stable" /etc/apt/sources.list
sudo apt-get update
sudo apt-get install docker-ce
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment