In this tutorial, I have written some command for the Vagrant cheat sheet. The Vagrant is building an isolated virtual environment for the app. Vagrant the essential for DevOps Roles.
Table of Contents
Vagrant cheat sheet
Vagrant add box
Link download vagrant box here
$ vagrant box add Centos7 https://github.com/holms/vagrant-centos7-box/releases/download/7.1.1503.001/CentOS-7.1.1503-x86_64-netboot.box

$ mkdir your_projects $ cd your_projects $ vagrant init Centos7
Vagrant run
$ vagrant up $ vagrant ssh
Vagrant stop
Stopping Virtual Machine using one of the command following
$ vagrant ssh # then: sudo shutdown -h now $ vagrant suspend $ vagrant destroy # stop running machine Vagrant is managing and destroys all resources
Website Vagrant https://www.vagrantup.com/
Conclusion
Thought the article, You can use “Vagrant cheat sheet“ as above . I hope will this your helpful.