git://git.halfball.org
/
ansiblebook.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4adf00d
)
Vagrantfile
author
Lorin Hochstein
<lhochstein@netflix.com>
Mon, 6 Feb 2017 04:32:21 +0000
(20:32 -0800)
committer
Lorin Hochstein
<lhochstein@netflix.com>
Mon, 6 Feb 2017 04:32:21 +0000
(20:32 -0800)
ch13/Vagrantfile
[new file with mode: 0644]
patch
|
blob
diff --git a/ch13/Vagrantfile
b/ch13/Vagrantfile
new file mode 100644
(file)
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