Files
tsemple/Vagrantfile
2014-04-06 22:48:41 +08:00

21 lines
571 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
# NFS required
config.vm.network :private_network, ip: '192.168.33.10'
# Use NFS for performance
config.vm.synced_folder '.', '/vagrant', type: 'nfs'
end