You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
265 B
11 lines
265 B
3 weeks ago
|
# -*- mode: ruby -*-
|
||
|
# vi: set ft=ruby :
|
||
|
|
||
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.box = "generic/ubuntu2204"
|
||
|
config.vm.network "forwarded_port", guest: 80, host: 8080
|
||
|
config.vm.provision "ansible" do |ansible|
|
||
|
ansible.playbook = "main.yml"
|
||
|
end
|
||
|
end
|