1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-15 15:08:27 +02:00
cheatsheets/vagrant.md
Rico Sta. Cruz 511de900ba
Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

645 B

title, category, intro
title category intro
Vagrant Devops [Vagrant](http://vagrantup.com) lets you build isolated virtual environments for your apps.

Get started

Add some base boxes: {: .-setup}

vagrant box add precise64 http://files.vagrantup.com/precise64.box

Work it:

mkdir test_box
cd test_box
vagrant init precise64

Run it:

vagrant up
vagrant ssh

To stop, use one of the following:

vagrant ssh        # then: sudo shutdown -h now
vagrant suspend
vagrant destroy    # !!

Also see