Add memory to the virtual machine

Fixes #244
This commit is contained in:
Kusti Skytén 2017-07-10 16:53:05 +03:00
parent 2ae702c7bb
commit b2b4f6516a

5
Vagrantfile vendored
View File

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