-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
33 lines (28 loc) · 910 Bytes
/
Vagrantfile
File metadata and controls
33 lines (28 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Vagrant.configure("2") do |config|
config.dns.tld = "box"
config.vm.define "blue" do |config|
config.vm.hostname = "blue"
config.vm.box = "ubuntu"
config.vm.network :private_network, ip: "192.168.50.2"
end
config.vm.define "green" do |config|
config.vm.hostname = "green"
config.vm.box = "ubuntu"
config.vm.network :private_network, ip: "192.168.50.3"
end
config.vm.define "orange" do |config|
config.vm.hostname = "orange"
config.vm.box = "ubuntu"
config.vm.network :private_network, ip: "192.168.50.4"
end
config.vm.define "purple" do |config|
config.vm.hostname = "purple"
config.vm.box = "ubuntu"
config.vm.network :private_network, ip: "192.168.50.5"
end
config.vm.define "chartruse" do |config|
config.vm.hostname = "chartruse"
config.vm.box = "ubuntu"
config.vm.network :private_network, ip: "192.168.50.50"
end
end