Vagrantfile examples
Here you will find some Vagrantfile examples that I use in my daily life.
Original => Original file from version 2.2.19
Simple - Simple Vagrantfile with just the vm image and a public network in bridge mode
Custom - Some custom configurations
Mutiple-VMs - Multiple vms in the same Vagrantfile
Loop - A loop structure to create as much vms as you want with the same configuration
Mutiple-VMs-with-loop - Multiple vms with loop config to create more than one vm with the same image/config
VirtualBox-provider - Simple configs for VirtualBox provider
VMWare-provider - Simple configs for VMWare provider
You can find the availables vagrant boxes here → https://app.vagrantup.com/boxes/search
vagrant box list
vagrant global-status
vagrant global-status --prune
vagrant box add generic/oracle8
vagrant box add generic/oracle8 --provider vmware_desktop
vagrant box add generic/oracle8 --provider vmware_desktop --box-version 4.0.2
vagrant box outdated --global
vagrant box update --box <box_image_name>
vagrant box remove generic/oracle8
vagrant box remove generic/oracle8 --provider vmware_desktop
vagrant box remove generic/oracle8 --provider vmware_desktop --box-version 4.0.2