How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "cloud-image/almalinux-8.9"
  config.vm.box_version = "20231128.0.0"
end
vagrant init cloud-image/almalinux-8.9 \
  --box-version 20231128.0.0
vagrant up

This version was created 4 months ago.

AlmaLinux 8.9 (Midnight Oncilla) Cloud Image

This is a Vagrant Box derived from the official Cloud Image without modification except for the Vagrant user injected using cloud-init configuration file.

Usage

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/almalinux-8.9"
  config.vm.synced_folder ".", "/vagrant", disabled: true
end

For further information, please refer to the sources.

2 providers for this version.
  • libvirt
    arm64 Hosted by Vagrant Cloud (509 MB)
    amd64 Hosted by Vagrant Cloud (653 MB)
  • qemu
    amd64 Hosted by Vagrant Cloud (653 MB)
    arm64 Hosted by Vagrant Cloud (509 MB)