Skip to content

Instantly share code, notes, and snippets.

@codebrane
Created November 16, 2012 08:54
Show Gist options
  • Save codebrane/4085610 to your computer and use it in GitHub Desktop.
Save codebrane/4085610 to your computer and use it in GitHub Desktop.
Basic Vagrant file
Vagrant::Config.run do |config|
config.vm.box = "precise64"
config.vm.customize ["modifyvm", :id, "--name", "ldap", "--memory", "512"]
config.vm.host_name = "ldap"
config.vm.forward_port 22, 2222, :auto => true
config.vm.network :hostonly, "33.33.13.37"
config.vm.share_folder "mac", "/mac", "~/"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment