How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "cloud-image/debian-12"
end
vagrant init cloud-image/debian-12
vagrant up
This version was created 11 days ago.
This is a Vagrant Box derived from the official Cloud Image without modification except for the Vagrant user injected using cloud-init configuration file.
Install libvirt
and/or qemu
provider using the standard Vagrant plugin installation command:
vagrant plugin install vagrant-libvirt
vagrant plugin install vagrant-qemu
Create a minimal Vagrantfile
file as follow:
Vagrant.configure("2") do |config|
config.vagrant.plugins = "vagrant-libvirt"
#config.vagrant.plugins = "vagrant-qemu"
config.vm.box = "cloud-image/debian-12"
config.vm.synced_folder ".", "/vagrant", disabled: true
end
For further information, please refer to the sources.
libvirt | ||
---|---|---|
amd64 | Hosted by Vagrant Cloud (413 MB) | |
arm64 | Hosted by Vagrant Cloud (402 MB) |
qemu | ||
---|---|---|
amd64 | Hosted by Vagrant Cloud (413 MB) | |
arm64 | Hosted by Vagrant Cloud (402 MB) |
This version was created 4 months ago.
This is a Vagrant Box derived from the official Cloud Image without modification except for the Vagrant user injected using cloud-init configuration file.
Install libvirt
and/or qemu
provider using the standard Vagrant plugin installation command:
vagrant plugin install vagrant-libvirt
vagrant plugin install vagrant-qemu
Create a minimal Vagrantfile
file as follow:
Vagrant.configure("2") do |config|
config.vagrant.plugins = "vagrant-libvirt"
#config.vagrant.plugins = "vagrant-qemu"
config.vm.box = "cloud-image/debian-12"
config.vm.synced_folder ".", "/vagrant", disabled: true
end
For further information, please refer to the sources.
libvirt | ||
---|---|---|
amd64 | Hosted by Vagrant Cloud (416 MB) | |
arm64 | Hosted by Vagrant Cloud (387 MB) |
qemu | ||
---|---|---|
amd64 | Hosted by Vagrant Cloud (416 MB) | |
arm64 | Hosted by Vagrant Cloud (387 MB) |
This version was created 4 months ago.
There isn't a description.