Skip to content

Instantly share code, notes, and snippets.

@domtra
Created March 31, 2014 15:50
Show Gist options
  • Select an option

  • Save domtra/9895380 to your computer and use it in GitHub Desktop.

Select an option

Save domtra/9895380 to your computer and use it in GitHub Desktop.
# 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