From b109ee13789d1e6f3f9ae0606a11484d7fbc6cf0 Mon Sep 17 00:00:00 2001 From: lubiana Date: Mon, 2 May 2022 08:58:41 +0200 Subject: [PATCH] bump memory in vagrantfile to 512mb --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index dee2435..fb02d72 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,7 +4,7 @@ Vagrant.configure("2") do |config| config.vm.box = "archlinux/archlinux" config.vm.provider "virtualbox" do |v| - v.memory = 256 + v.memory = 512 v.cpus = 2 end config.vm.network "forwarded_port", guest: 1235, host: 1235