From b2b4f6516abb4ad88f1ada86fab0a6bfcfd98919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kusti=20Skyt=C3=A9n?= Date: Mon, 10 Jul 2017 16:53:05 +0300 Subject: [PATCH] Add memory to the virtual machine Fixes #244 --- Vagrantfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 5efbd6add..46caa38bc 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,4 +12,9 @@ Vagrant.configure(VAGRANT_API_VERSION) do |config| # Networking details config.vm.network "private_network", ip: "172.28.128.4" + + config.vm.provider "virtualbox" do |vb| + # Customize the amount of memory on the VM: + vb.memory = "1024" + end end