You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
stacosys/Vagrantfile

14 lines
338 B
Ruby

Vagrant.configure("2") do |config|
config.vm.box = "debian/bullseye64"
config.vm.provider :virtualbox do |vb|
vb.memory = 1024
vb.cpus = 1
end
config.vm.define "master" do |master|
master.vm.hostname = "master"
master.vm.provision "shell", inline: <<-SHELL
mkdir /home/vagrant/stacosys
SHELL
end
end