Vagrant
Vagrant quickstart reference:
vagrant init
→ createVagrantfile
file in current directory.vagrant up
→ start up virtual box based on config fromVagrantfile
in current directory or the nearest parent directory containing aVagrantfile
.vagrant destroy
→ shuts down the virtual box that was started withvagrant up
.vagrant ssh
→ ssh into the box configured by the localVagrantfile
.vagrant reload --provision
→ stop the machine, rerun the provisioning script, and restart it.vagrant login
→ log into Vagrant Cloud, so that you canvagrant share
/ pull private boxes / other commercial things.vagrant share
→ create hostname that tunnels to this box, kind of likengrok
.