Skip to content

Instantly share code, notes, and snippets.

@dstegelman
Created June 27, 2014 19:08
Show Gist options
  • Save dstegelman/7c9421aef6813bc26525 to your computer and use it in GitHub Desktop.
Save dstegelman/7c9421aef6813bc26525 to your computer and use it in GitHub Desktop.
Base Vagrant File
Vagrant.configure("2") do |config|
## Choose your base box
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.synced_folder "", "/home/vagrant/test"
config.vm.network "forwarded_port", guest: 8080, host: 9090
config.ssh.forward_agent = true
config.vm.host_name = 'test-dev'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment