From 96f4752d2eddb06c9e65829757197241faa8ee27 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 7 Feb 2019 08:32:20 +0000 Subject: [PATCH] Tweak Vagrant settings --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 09c7339..67c4778 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,8 +8,8 @@ Vagrant.configure("2") do |config| config.vm.provider "virtualbox" do |vb| vb.name = 'dransible' - vb.memory = 1024 - vb.cpus = 2 + vb.memory = 2048 + vb.cpus = 1 end # Set the name of the VM. See: http://stackoverflow.com/a/17864388/100134