From: Lorin Hochstein Date: Mon, 6 Feb 2017 04:32:21 +0000 (-0800) Subject: Vagrantfile X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=da33c25d252c8ca21bb33c1eeed28d1429308e7d;p=ansiblebook.git 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