X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/89ba5eab46ae6c2ecb30af538604ed17a13f4994..a1b179fa384d689e6cb78c2b8d863621e7bff152:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index f41f9676c..d10934b37 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,17 +8,18 @@ Vagrant.configure("2") do |config| override.vm.synced_folder ".", "/srv/openstreetmap-website" vb.customize ["modifyvm", :id, "--memory", "1024"] vb.customize ["modifyvm", :id, "--cpus", "2"] + vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"] end # use third party image and NFS sharing for lxc config.vm.provider "lxc" do |_, override| - override.vm.box = "sputnik13/trusty64" + override.vm.box = "generic/ubuntu1604" override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => "nfs" end # use third party image and NFS sharing for libvirt config.vm.provider "libvirt" do |_, override| - override.vm.box = "sputnik13/trusty64" + override.vm.box = "generic/ubuntu1604" override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => "nfs" end