Created
December 3, 2013 09:23
-
-
Save ijonas/7766492 to your computer and use it in GitHub Desktop.
DiDate Docker Install Steps
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
# after launching an Ubuntu 12.04 instance and ssh-ing into the VM | |
apt-get update | |
apt-get install linux-image-generic-lts-raring linux-headers-generic-lts-raring | |
reboot | |
# ssh-ing back into the VM | |
sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -" | |
sh -c "echo deb http://get.docker.io/ubuntu docker main /etc/apt/sources.list.d/docker.list" | |
apt-get update | |
apt-get install lxc-docker | |
apt-get install open-vm-tools # tried solving the problem with this step but doesn't make difference | |
reboot | |
# ssh-ing back into the VM | |
docker pull ubuntu # to test Docker service is running | |
# Now I create a Customer Image and try and launch the new Customer Image and it gets stuck in | |
# trying to connect to guest VM NIC. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment