for spinning up new servers. Currently, they are: • VirtualBox (hKps://www.virtualbox.org/) • *VMware (Fusion and WorkstaYon) VagrantUp.com pushes for VMware for “work”
works great except where it doesn’t • Some people have trouble with it crashing • It can’t handle a large number of files with the standard file sharing system • NFS poses it’s own complicaYons • Vmware is PAID! – It’s $49 or $99 for the so;ware and $79 for the provider – Supposed to be more stable and faster
… } Vagrant.configure("2") do |config| nodes.each_pair do |name,opYons| config.vm.define name do |node| node.vm.box = "base-‐box-‐name" node.vm.box_url = "hKp://some/url.box" node.vm.hostname = opYons[:hostname] node.vm.network :private_network, ip: opYons[:ipaddress] end end end