Created
March 31, 2014 15:50
-
-
Save domtra/9895380 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
| # docker | |
| wget -q -O - https://get.docker.io/gpg | apt-key add - | |
| echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list | |
| apt-get update -qq; apt-get install -q -y --force-yes lxc-docker | |
| # Add vagrant user to the docker group | |
| usermod -a -G docker vagrant | |
| # packer | |
| apt-get install unzip | |
| wget https://dl.bintray.com/mitchellh/packer/0.5.2_linux_amd64.zip | |
| unzip 0.5.2_linux_amd64.zip -d ./packer | |
| rm 0.5.2_linux_amd64.zip | |
| echo export PATH=$PATH:/home/vagrant/packer >> /home/vagrant/.profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment