on page 23 of the book

This commit is contained in:
bronsen 2025-02-28 08:15:25 +01:00
parent 75856335f1
commit b683d061d8
3 changed files with 51 additions and 0 deletions

25
Vagrantfile vendored Normal file
View file

@ -0,0 +1,25 @@
Vagrant.configure("2") do |config|
config.vm.box = "generic/rocky9"
config.ssh.insert_key = false
config.vm.synced_folder "." "/vagrant", disabled: true
config.vm.provider :virtualbox do |v|
v.memory = 512
v.linked_clone = true
end
config.vm.define "app1" do |app|
app.vm.hostname = "orc-app1.test"
app.vm.network :private_network, ip: "192.168.60.4"
end
config.vm.define "app2" do |app|
app.vm.hostname = "orc-app2.test"
app.vm.network :private_network, ip: "192.168.60.5"
end
config.vm.define "db" do |db|
db.vm.hostname = "orc-db.test"
db.vm.network :private_network, ip: "192.168.60.6"
end
end