# VAGRANT BOXES Repository to store Vagrant boxes to use with Virtualbox provider ## Utilisation - Via le dép^du garage numérique: ```Vagrantfile Vagrant.configure("2") do |config| config.vm.box = "local/debian-13" config.vm.box_url = "https://git.legaragenumerique.fr/GARAGENUM/vagrant-boxes/raw/main/debian-13/debian-13-3-3.box" end ``` - Via Vagrant cloud: ```Vagrantfile Vagrant.configure("2") do |config| config.vm.box = "garagenum/debian-13" config.vm.box_version = "13.3.3" end ``` > https://portal.cloud.hashicorp.com/vagrant/discover/garagenum/debian-13