Skip to content

Instantly share code, notes, and snippets.

@w33ble
Created December 23, 2013 17:16
Show Gist options
  • Save w33ble/8100900 to your computer and use it in GitHub Desktop.
Save w33ble/8100900 to your computer and use it in GitHub Desktop.
vagrantfile for basic 12.04 server
Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.provision :shell, :path => "bootstrap.sh"
# config.vm.network :forwarded_port, host: 8888, guest: 80
config.vm.network "private_network", ip: "10.0.0.100"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment