From 1b4a06adef58262a3e9eba47049a6ca212d88be4 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 16 Dec 2020 18:23:38 +0000 Subject: [PATCH] Increase memory given to the virtualbox vm Fixes #2972 Like others, I found that the previous setting caused OOM failures, and 4096 was sufficient. I suspect lower values will also work, but I don't have time or inclination to bisect a smaller value. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 271c0b3f5..2ef899123 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure("2") do |config| config.vm.provider "virtualbox" do |vb, override| 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 -- 2.39.5