Simply use the current one here, or DIY:
- Minimalized Vagrantfile.
Refer to step-1, prepare a default Vagrantfile, then:
sed -e '/^ *#/d' -e '/^$/d' ../course-1/VagrantfileExpected content:
Vagrant.configure("2") do |config|
config.vm.box = "envimation/ubuntu-xenial-docker"
end- Put above content into a local Vagrantfile.
pwd # ensure you are in directory *course-2*
sed -e '/^ *#/d' -e '/^$/d' ../step-1/Vagrantfile > Vagrantfile- Add the following line before 'end'.
config.vm.define "course2demo"- Check it out.
vagrant status # status report: not createdZhan.Shi @ 2017