Skip to content

Instantly share code, notes, and snippets.

@miqui
Last active October 26, 2015 22:34
Show Gist options
  • Save miqui/7a1db6fbdb03ea789c79 to your computer and use it in GitHub Desktop.
Save miqui/7a1db6fbdb03ea789c79 to your computer and use it in GitHub Desktop.
Vagrant and latest ubuntu
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "public_network"
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
curl -sSL https://get.docker.com/ubuntu/ | sudo sh
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment