bump memory in vagrantfile to 512mb

This commit is contained in:
lubiana 2022-05-02 08:58:41 +02:00 committed by Andre Lubian
parent 8f7d95d86f
commit b109ee1378

2
Vagrantfile vendored
View file

@ -4,7 +4,7 @@
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "archlinux/archlinux" config.vm.box = "archlinux/archlinux"
config.vm.provider "virtualbox" do |v| config.vm.provider "virtualbox" do |v|
v.memory = 256 v.memory = 512
v.cpus = 2 v.cpus = 2
end end
config.vm.network "forwarded_port", guest: 1235, host: 1235 config.vm.network "forwarded_port", guest: 1235, host: 1235