Vagrantfile
authorLorin Hochstein <lhochstein@netflix.com>
Mon, 6 Feb 2017 04:32:21 +0000 (20:32 -0800)
committerLorin Hochstein <lhochstein@netflix.com>
Mon, 6 Feb 2017 04:32:21 +0000 (20:32 -0800)
ch13/Vagrantfile [new file with mode: 0644]

diff --git a/ch13/Vagrantfile b/ch13/Vagrantfile
new file mode 100644 (file)
index 0000000..8347aef
--- /dev/null
@@ -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