Skip to content

Instantly share code, notes, and snippets.

@danielnegri
Created October 30, 2014 18:56
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 danielnegri/a21d05ee4a85e4c00b96 to your computer and use it in GitHub Desktop.
Save danielnegri/a21d05ee4a85e4c00b96 to your computer and use it in GitHub Desktop.
Vagrant File
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
WORKSPACE_ROOT = "/Users/grockit/workspace"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "saucy-i386"
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/saucy/current/saucy-server-cloudimg-i386-vagrant-disk1.box"
config.vm.hostname = "local.grockit.com"
config.vm.network :private_network, ip: "33.33.33.10"
config.vm.synced_folder "../", WORKSPACE_ROOT, :nfs => true
config.vm.provider :virtualbox do |vb|
# vb.gui = true
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