X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a1b179fa384d689e6cb78c2b8d863621e7bff152..b4d1a7ad674c2f4a38e8ce3713e7a95d03cae6e6:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index d10934b37..b6248d66c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,7 +4,7 @@ Vagrant.configure("2") do |config| # use official ubuntu image for virtualbox config.vm.provider "virtualbox" do |vb, override| - override.vm.box = "ubuntu/xenial64" + override.vm.box = "ubuntu/bionic64" override.vm.synced_folder ".", "/srv/openstreetmap-website" vb.customize ["modifyvm", :id, "--memory", "1024"] vb.customize ["modifyvm", :id, "--cpus", "2"] @@ -13,13 +13,13 @@ Vagrant.configure("2") do |config| # use third party image and NFS sharing for lxc config.vm.provider "lxc" do |_, override| - override.vm.box = "generic/ubuntu1604" + override.vm.box = "generic/ubuntu1804" 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 = "generic/ubuntu1604" + override.vm.box = "generic/ubuntu1804" override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => "nfs" end