Vagrant 1.6.3
VirtualBox 4.3.12
http://www.vagrantup.com/downloads.html
vagrant -v (should return Vagrant x.x.x)
# all available command options
vagrant help
- Install git
- update %PATH% with C:\Git\bin (It contains sh.exe)
# Add boxes to local machines (can be resused in multiple projects)
vagrant box add centos-65-x64 http://puppet-vagrant-boxes.puppetlabs.com/centos-65-x64-virtualbox-puppet.box
# Vagrant box location (added using vagrant box add):
# Mac/Linux
~/.vagrant.d/boxes
# List all boxes
vagrant box list
centos-63-x64 (virtualbox, 0)
centos-65-x64 (virtualbox, 0)
ubuntu-12.04-x64 (virtualbox, 0)
vagrant init centos-65-x64
vagrant up
vagrant ssh
vagrant halt
vagrnat destroy
vagrant init
vagrant up
vagrant ssh
vagrant halt
vagrant destroy
- http://docs.vagrantup.com/v2/getting-started/boxes.html
- http://blog.smalleycreative.com/tutorials/setup-a-django-vm-with-vagrant-virtualbox-and-chef/
- https://speakerdeck.com/lewg/consistent-local-development-with-vagrant-and-chef
- http://nefariousdesigns.co.uk/vagrant-virtualised-dev-environments.html