Last active
August 29, 2015 14:18
-
-
Save elvetemedve/10a33745b07d214851d1 to your computer and use it in GitHub Desktop.
Vagrant global configuration
This file contains 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
# ~/.vagrant.d/Vagrantfile | |
Vagrant.configure('2') do |config| | |
config.vm.provider :virtualbox do |vbox, override| | |
vbox.memory = 2048 | |
vbox.cpus= 2 | |
# Automatically remove unused virtual network interfaces (vboxnet*) when destroying a VM. | |
vbox.destroy_unused_network_interfaces = true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment