Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 818 Bytes

vagrant-install.md

File metadata and controls

27 lines (23 loc) · 818 Bytes

Installation

Installing using Vagrant

  1. Install VirtualBox

  2. Install Vagrant

  3. Prepare project:

    $ git clone [git-repositry]
    $ cd /path/to/application/vagrant/config/
    $ cp vagrant-local.example.yml vagrant-local.yml
    
  4. Update vagrant-local.yml to suit your needs.

  5. Run commands from the project root directory:

    $ cd /path/to/application/
    $ vagrant plugin install vagrant-hostmanager
    $ vagrant plugin install vagrant-vbguest
    
  6. Virtualbox Guest Additions has problems with some deprecated packages. To circumvent it, use the following script for the initial machine creation:

    $ ./vagrant-install.sh
    

That's all. You just need to wait for completion!