Last active
August 29, 2015 14:02
-
-
Save timmow/efa0e6463b1e1f1a0af2 to your computer and use it in GitHub Desktop.
~/.vagrant.d/Vagrantfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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