dotfiles/Vagrantfile

13 lines
467 B
Text
Raw Normal View History

# -*- 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"
config.vm.network "forwarded_port", guest: 80, host: 8000, host_ip: "127.0.0.1"
end