Skip to content

Instantly share code, notes, and snippets.

@vitallium
Created April 20, 2016 15:02
Show Gist options
  • Select an option

  • Save vitallium/709c724f49b14d7d5dbe551c17fb71ea to your computer and use it in GitHub Desktop.

Select an option

Save vitallium/709c724f49b14d7d5dbe551c17fb71ea to your computer and use it in GitHub Desktop.
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 3000, host: 3000
# sync the app folder
config.vm.synced_folder "./", "/app/", type: "nfs"
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment