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.
21 lines
509 B
21 lines
509 B
Vagrant.configure("2") do |config|
|
|
|
|
config.vm.define "mac" do |mac|
|
|
config.vm.box = "devcert/macos"
|
|
config.vm.network "public_network"
|
|
|
|
config.vm.define "linux" do |linux|
|
|
config.vm.box = "devcert/linux"
|
|
config.vm.network "public_network"
|
|
|
|
config.vm.define "windows" do |windows|
|
|
config.vm.box = "devcert/windows"
|
|
config.vm.network "public_network"
|
|
|
|
config.vm.provider "virtualbox" do |vb|
|
|
# Display the VirtualBox GUI when booting the machine
|
|
vb.gui = true
|
|
end
|
|
|
|
end
|