Title here
Summary here
Command | Description |
---|---|
vagrant init | Initializes a new Vagrantfile in the current directory. |
vagrant up | Starts and provisions the Vagrant environment. |
vagrant halt | Stops the running Vagrant environment. |
vagrant destroy | Destroys the current Vagrant environment, freeing resources. |
vagrant status | Shows the status of the current Vagrant environment. |
vagrant ssh | SSH into the running Vagrant machine. |
vagrant provision | Reruns the provisioning on the Vagrant environment. |
vagrant reload | Restarts the Vagrant machine and applies any changes to the Vagrantfile. |
vagrant suspend | Suspends the current Vagrant environment. |
vagrant resume | Resumes a suspended Vagrant environment. |
vagrant box list | Lists all the boxes installed on your system. |
vagrant box add | Adds a new box from a source (e.g., a URL or Vagrant Cloud). |
vagrant box remove | Removes a box from the local storage. |
vagrant box update | Updates the box for the given Vagrant environment. |
vagrant plugin list | Lists installed Vagrant plugins. |
vagrant plugin install | Installs a new Vagrant plugin. |
vagrant package | Packages the running Vagrant machine into a reusable box. |
vagrant global-status | Shows the status of all Vagrant environments on the system. |
vagrant share | Shares the Vagrant environment via a publicly accessible URL. |
vagrant snapshot save | Takes a snapshot of the current state of the Vagrant machine. |
vagrant snapshot restore | Restores the Vagrant machine to a previously saved snapshot. |