Skip to content

Instantly share code, notes, and snippets.

@gauravve
Created May 26, 2016 11:41
Show Gist options
  • Save gauravve/82edde94ff67c4207d6dcdefbfed2ae7 to your computer and use it in GitHub Desktop.
Save gauravve/82edde94ff67c4207d6dcdefbfed2ae7 to your computer and use it in GitHub Desktop.
Install specific version of docker on Ubuntu 15.10 Wily
apt-get update
apt-get install apt-transport-https ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo ubuntu-wily main" > /etc/apt/sources.list.d/docker.list
apt-get update
apt-cache madison docker-engine
apt-get install -y docker-engine=1.10.3-0~wily
service docker start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment