Created
June 28, 2016 14:31
-
-
Save jeffersonsouza/5ad0c53f89fe88c411647b5e1a70bcd0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Docker latest | |
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-trusty main' > /etc/apt/sources.list.d/docker.list | |
apt-get update | |
apt-get purge lxc-docker | |
apt-cache policy docker-engine | |
apt-get update | |
apt-get install linux-image-extra-$(uname -r) | |
apt-get update | |
apt-get install linux-image-generic-lts-trusty | |
reboot | |
service docker stop | |
sudo apt-get update && sudo apt-get install docker-engine -y && sudo service docker start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment