Using Vagrant for Windows VMs provisioning - Dots and Brackets: Code Blog
https://codeblog.dotsandbrackets.com/vagrant-windows/
https://app.vagrantup.com/mwrock
"mwrock/windows2016"
Vagrant.configure("2") do |config|
config.vm.box = "mwrock/windows2016"
config.vm.hostname = "host-win"
winClientIP = "192.168.99.103"
config.vm.network "private_network", ip: winClientIP
end
https://app.vagrantup.com/mwrock/boxes/Windows2016
Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "mwrock/Windows2016"
end
vagrant init mwrock/Windows2016
vagrant up
https://app.vagrantup.com/StefanScherer/boxes/windows_2019
"StefanScherer/windows_2019"
Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "StefanScherer/windows_2019"
end
vagrant init StefanScherer/windows_2019
vagrant up
Windows Server 2019 Eval with Desktop
Packer templates at :
https://github.com/StefanScherer/packer-windows/releases/tag/2021.05.15
HowTo build Windows 10/11/2016/2019/2022 base Vagrant boxes
using Packer and VirtualBox/libvirt/qemu.
https://github.com/rgl/windows-vagrant
https://github.com/joefitzgerald/packer-windows
No comments:
Post a Comment