I ramble, wander, stroll about.
I waver, am unsettled.
​https://docs.vagrantup.com/v2/why-vagrant/index.html
Define and control multiple guest machines.
These machines are generally able to work together or are somehow associated with each other.
Vagrant.configure("2") do |config|
config.vm.define "web" do |web|
web.vm.box = "apache"
end
config.vm.define "db" do |db|
db.vm.box = "mysql"
end
end
https://vagrantcloud.com/discover​
$> vagrant init debian/trusty64
$> vagrant up
$> vagrant ssh