Skip to content

Instantly share code, notes, and snippets.

@perrygeo
Created August 23, 2015 16:06
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 perrygeo/6cf214425d83eb52d8f7 to your computer and use it in GitHub Desktop.
Save perrygeo/6cf214425d83eb52d8f7 to your computer and use it in GitHub Desktop.
Basic Ubuntu Vagrantfile with more memory/cpus and folder share
Vagrant::Config.run do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.customize ["modifyvm", :id, "--cpus", 4]
config.vm.customize ["modifyvm", :id, "--memory", 4898]
config.vm.forward_port 8888, 8888
config.vm.share_folder "v-app", "/usr/local/src", "./", mount_options: ["dmode=775,fmode=664"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment