Skip to content

Instantly share code, notes, and snippets.

@cjpartridgeb
Created June 21, 2013 01:45
Show Gist options
  • Save cjpartridgeb/5828282 to your computer and use it in GitHub Desktop.
Save cjpartridgeb/5828282 to your computer and use it in GitHub Desktop.
Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.network :private_network, ip: "192.168.100.1"
config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment