What exactly is vagrant ?
Vagrant is a tool that makes it easy to build and share virtual environments, inn normal way , it takes time and effort to start a virtual machine with VirtualBox or Hyper-V and build a development environment there. With Vagrant makes the burden somewhat lighter by automating the work. By describing the virtual environment settings in the configuration file called Vagrantfile
, the tool will automatically set the environment.
Main benefits of introducing Vagrant
- The same virtual environment can be easily provided to multiple people
- We can easily build the same virtual environment multiple times
- We u can easily build an environment with the same settings in different environments.
By sharing a Vagrantfile
we can easily provide the same virtual environment to multiple people, it is possible to easily provide the same environment to multiple people.
Vagrant can easily build the same virtual environment multiple times, and you can easily destroy the built virtual environment with a single command. After destroying it once, if you need it again, you can rebuild the same environment by using the previously created Vagrantfile. Since you can easily build and destroy…