Skip to content

Instantly share code, notes, and snippets.

@clemherreman
Created May 13, 2013 14:25
Show Gist options
  • Save clemherreman/5568680 to your computer and use it in GitHub Desktop.
Save clemherreman/5568680 to your computer and use it in GitHub Desktop.
Vagrantfile
Vagrant::Config.run do |config|
config.vm.box = "centos-6.3"
config.vm.host_name = "ps3.profilsearch.com"
# config.vm.boot_mode = :gui
config.vm.network :hostonly, "192.168.33.10"
config.vm.share_folder "v-data", "/vagrant_data", "../..", :nfs => true
config.vm.customize ["modifyvm", :id, "--name", "Profilsearch"]
config.vm.customize ["modifyvm", :id, "--memory", 1024]
config.vm.customize ["modifyvm", :id, "--cpus", 2]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment