Skip to content

Instantly share code, notes, and snippets.

@a-chernykh
Last active August 29, 2015 14:09
Show Gist options
  • Save a-chernykh/a8b4f62a07577607b5da to your computer and use it in GitHub Desktop.
Save a-chernykh/a8b4f62a07577607b5da to your computer and use it in GitHub Desktop.
sample Vagrantfile which installs Ubuntu Trusty
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] # faster network
vb.memory = 1024
vb.cpus = 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment