2023-10-07 15:12:56 +00:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
# The most common configuration options are documented and commented below.
|
|
|
|
# For a complete reference, please see the online documentation at
|
|
|
|
# https://docs.vagrantup.com.
|
|
|
|
|
|
|
|
config.vm.box = "debian/bullseye64"
|
|
|
|
config.vm.network "forwarded_port", guest: 50012, host: 50012, host_ip: "127.0.0.1"
|
2023-12-14 12:27:05 +00:00
|
|
|
config.vm.network "forwarded_port", guest: 80, host: 8000, host_ip: "127.0.0.1"
|
2023-10-07 15:12:56 +00:00
|
|
|
end
|