Last active
August 30, 2016 09:14
-
-
Save giordanocardillo/7fee0a16d053963af1ce8496547b565f to your computer and use it in GitHub Desktop.
Install Docker on Ubuntu 14.04
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
#!/bin/sh | |
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-get install linux-image-extra-$(uname -r) | |
apt-get install apparmor | |
apt-get install docker-engine | |
service docker start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment