bump memory in vagrantfile to 512mb

This commit is contained in:
lubiana 2022-05-02 08:58:41 +02:00
parent 24b2868e8c
commit 5383129446

2
Vagrantfile vendored
View file

@ -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