homelab/Vagrantfile

18 lines
448 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian11"
# Use the standard insecure SSH key
config.ssh.insert_key = false
# Don't mount the current directory in the VM
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.define "alpha" do |n|
n.vm.hostname = "alpha.test"
n.vm.network :private_network, ip: "192.168.56.5"
end
end