X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2f9291ba5764fe104264ae7e3b6a361e11212e8b..11e81c5398bb43d35c1b12421f7a6be2ca5b7047:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index fcb4790fe..2ef899123 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,9 +4,9 @@ Vagrant.configure("2") do |config| # use official ubuntu image for virtualbox config.vm.provider "virtualbox" do |vb, override| - override.vm.box = "ubuntu/bionic64" + override.vm.box = "ubuntu/focal64" override.vm.synced_folder ".", "/srv/openstreetmap-website" - vb.customize ["modifyvm", :id, "--memory", "1024"] + vb.customize ["modifyvm", :id, "--memory", "4096"] vb.customize ["modifyvm", :id, "--cpus", "2"] vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"] end @@ -16,13 +16,13 @@ Vagrant.configure("2") do |config| # use third party image and sshfs or NFS sharing for lxc config.vm.provider "lxc" do |_, override| - override.vm.box = "generic/ubuntu1804" + override.vm.box = "generic/ubuntu2004" override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => sharing_type end # use third party image and sshfs or NFS sharing for libvirt config.vm.provider "libvirt" do |_, override| - override.vm.box = "generic/ubuntu1804" + override.vm.box = "generic/ubuntu2004" override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => sharing_type end