Skip to content

Instantly share code, notes, and snippets.

@elvetemedve
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elvetemedve/10a33745b07d214851d1 to your computer and use it in GitHub Desktop.
Save elvetemedve/10a33745b07d214851d1 to your computer and use it in GitHub Desktop.
Vagrant global configuration
# ~/.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