This is an old revision of the document!


Vagrant

Vagrant is a tool for building and managing virtual machine environments in a single workflow. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases production parity, and makes the “works on my machine” excuse a relic of the past.

Homepage: https://www.vagrantup.com
Documentation: https://www.vagrantup.com/docs

Links

Tipps & Tricks

  • Can't connect to linux box - ssh login to local loopback 127.0.0.1 is not working.

    Add to local global config file ~/.vagrant.d/Vagrantfile the following
    Vagrant.configure("2") do |config|
      config.vm.provider : vmware_fusion do |v|
        v.ssh_info_public = true
      end
    end