/Vagrantfile

My Vagrantfiles

Primary LanguageShell

Vagrantfile

My Vagrantfiles repository.

From official documentation https://www.vagrantup.com/:

The primary function of the Vagrantfile is to describe the type of machine required for a project, and how to configure and provision these machines. Vagrantfiles are called Vagrantfiles because the actual literal filename for the file is Vagrantfile (casing does not matter unless your file system is running in a strict case sensitive mode).

Vagrant is meant to run with one Vagrantfile per project, and the Vagrantfile is supposed to be committed to version control. This allows other developers involved in the project to check out the code, run vagrant up, and be on their way. Vagrantfiles are portable across every platform Vagrant supports.

Prerequisites

How to use :

# Clone this repository
$ git clone https://github.com/Cizin/Vagrantfile.git

# Go to Vagrantfile/folder directory
$ cd Vagrantfile/folder

# Start Virtual Machines with
$ vagrant up

Vagranfile list

Note

You may need to install VirtualBox guest additions to get some features (like shared folder)