Skip to content
This repository was archived by the owner on Jan 10, 2022. It is now read-only.
Milad Khakpour edited this page Jan 9, 2020 · 4 revisions

Vagrant

Vagrant is a program that makes VMs more convenient to use. For example when you ran vagrant up Vagrant created a VM, installed a guest OS, and configured the guest OS. Vagrant did all of this automatically by following instructions in the Vagrantfile. Automating this process saves time and ensures consistent results.

Vagrantfile example (Download)

Requirements:

  • Git
  • VirtualBox
  • Vagrant

to run:

  1. vagrant up
  2. vagrant ssh

other commands:

  • vagrant status
  • vagrant suspend
  • vagrant halt
  • vagrant destroy
Clone this wiki locally