From 806ceac39bf7140b5b45f7b27d3dab405b461932 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Sun, 5 Feb 2017 21:19:43 -0800 Subject: [PATCH] add memory --- ch13/Vagrantfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ch13/Vagrantfile b/ch13/Vagrantfile index 9672e8a..f6bce2e 100644 --- a/ch13/Vagrantfile +++ b/ch13/Vagrantfile @@ -5,9 +5,15 @@ Vagrant.configure("2") do |config| config.vm.define "postgres" do |postgres| postgres.vm.box = "ubuntu/trusty64" postgres.vm.network "private_network", ip: "192.168.33.9" + postgres.vm.provider "virtualbox" do |v| + v.memory = 1024 + end end config.vm.define "ghost" do |ghost| ghost.vm.box = "ubuntu/trusty64" ghost.vm.network "private_network", ip: "192.168.33.10" + ghost.vm.provider "virtualbox" do |v| + v.memory = 1024 + end end end -- 2.44.0