Vagrantfile 589 B

123456789101112131415161718192021
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. # All Vagrant configuration is done below. The "2" in Vagrant.configure
  4. # configures the configuration version (we support older styles for
  5. # backwards compatibility). Please don't change it unless you know what
  6. # you're doing.
  7. Vagrant.configure(2) do |config|
  8. config.vm.box = "ubuntu/trusty64"
  9. config.vm.synced_folder "../..", "/source", type: "nfs"
  10. config.vm.network "private_network", type: :dhcp
  11. config.vm.provider "virtualbox" do |v|
  12. v.memory = 4096
  13. v.cpus = 4
  14. end
  15. config.vm.provision :shell, path: "bootstrap.sh"
  16. end