diff --git a/Vagrantfile b/Vagrantfile index 2b74d49..da5a48c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,6 +10,10 @@ ENV["LC_ALL"] = "en_US.UTF-8" Vagrant.configure("2") do |config| config.vm.box = "ubuntu/bionic64" + config.vm.provider "virtualbox" do |v| + v.memory = 2048 + v.cpus = 2 + end config.vm.network "private_network", ip: "192.168.50.10"