Vagrantfile
Purpose of a Vagrantfile
Basic Structure
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise32"
endCommon Configuration Options
config.vm.network "forwarded_port", guest: 80, host: 8080Best Practices
Last updated