DEV Community

Lam
Lam

Posted on

Vagrant Cheat Sheet

Also see

Get started

Add some base boxes:
{: .-setup}

vagrant box add precise64 http://files.vagrantup.com/precise64.box
Enter fullscreen mode Exit fullscreen mode

Work it:

mkdir test_box
cd test_box
vagrant init precise64
Enter fullscreen mode Exit fullscreen mode

Run it:

vagrant up
vagrant ssh
Enter fullscreen mode Exit fullscreen mode

To stop, use one of the following:

vagrant ssh        # then: sudo shutdown -h now
vagrant suspend
vagrant destroy    # !!
Enter fullscreen mode Exit fullscreen mode

Top comments (0)