diff --git a/docs/integrations.md b/docs/integrations.md
index 94105de6f..cd08e6f2d 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -942,3 +942,86 @@ Configuration of BunkerWeb is done by using specific role variables :
| `custom_plugins` | string | Path of the plugins directory to upload. | empty value |
| `custom_www_owner` | string | Default owner for www files and folders. | `nginx` |
| `custom_www_group` | string | Default group for www files and folders. | `nginx` |
+
+## Vagrant
+
+
Vagrant.configure("2") do |config|
+ config.vm.box = "bunkerity/bunkerity"
+ end
+
+ Depending on the virtualization provider you choose, you may need to install additional plugins:
+
+ * For **VMware**, install the `vagrant-vmware-desktop` plugin. For more information, see the [Vagrant documentation](https://www.vagrantup.com/docs/providers).
+ * For **libvirt**, install the `vagrant-libvirt plugin`. For more information, see the [Vagrant documentation](https://www.vagrantup.com/docs/providers).
+ * For **VirtualBox**, install the `vagrant-vbguest` plugin. For more information, see the [Vagrant documentation](https://www.vagrantup.com/docs/providers).
+
+=== "New Vagrant Box"
+
+
+ vagrant init bunkerity/bunkerity
+
+ Depending on the virtualization provider you choose, you may need to install additional plugins:
+
+ * For **VMware**, install the `vagrant-vmware-desktop` plugin. For more information, see the [Vagrant documentation](https://www.vagrantup.com/docs/providers).
+ * For **libvirt**, install the `vagrant-libvirt plugin`. For more information, see the [Vagrant documentation](https://www.vagrantup.com/docs/providers).
+ * For **VirtualBox**, install the `vagrant-vbguest` plugin. For more information, see the [Vagrant documentation](https://www.vagrantup.com/docs/providers).
+
+After installing the necessary plugins for your chosen virtualization provider, run the following command to start the virtual machine and install BunkerWeb:
+
+
+vagrant up --provider=virtualbox # or --provider=vmware_desktop or --provider=libvirt
+
+
+Finally to access the virtual machine using SSH, execute the following command:
+
+
+vagrant ssh
+
+
+**Example Vagrantfile**
+
+ Here is an example `Vagrantfile` for installing BunkerWeb on Ubuntu 22.04 "Jammy" using the different supported virtualization providers:
+
+Vagrant.configure("2") do |config|
+
+ # Ubuntu 22.04 "Jammy"
+ config.vm.box = "bunkerity/bunkerity"
+
+ # Uncomment the desired virtualization provider
+ # For VirtualBox (default)
+ config.vm.provider "virtualbox"
+
+ # For VMware
+ # config.vm.provider "vmware_workstation" # Windows/Linux
+
+ # For libvirt
+ # config.vm.provider "libvirt"
+
+end
\ No newline at end of file