Skip to content

Instantly share code, notes, and snippets.

@timmow
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save timmow/efa0e6463b1e1f1a0af2 to your computer and use it in GitHub Desktop.

Select an option

Save timmow/efa0e6463b1e1f1a0af2 to your computer and use it in GitHub Desktop.
~/.vagrant.d/Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provider :virtualbox do |vb, override|
vb.customize ["modifyvm", :id, "--memory", "2048", "--cpus", "2"]
end
config.vm.synced_folder ".", "/vagrant", type: "rsync"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment