Merge pull request #246 from kskyten/vb_memory

Add memory to the virtual machine
This commit is contained in:
Daniel Quinn 2017-07-10 15:02:45 +01:00 committed by GitHub
commit 3e083354cc

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