From da33c25d252c8ca21bb33c1eeed28d1429308e7d Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Sun, 5 Feb 2017 20:32:21 -0800 Subject: [PATCH] Vagrantfile --- ch13/Vagrantfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ch13/Vagrantfile diff --git a/ch13/Vagrantfile b/ch13/Vagrantfile new file mode 100644 index 0000000..8347aef --- /dev/null +++ b/ch13/Vagrantfile @@ -0,0 +1,13 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure("2") do |config| + config.vm.define "postgres" do |postgres| + postgres.vm.box = "trusty" + postgres.vm.network "private_network", ip: "192.168.33.9" + end + config.vm.define "ghost" do |ghost| + ghost.vm.box = "trusty" + ghost.vm.network "private_network", ip: "192.168.33.10" + end +end -- 2.44.0