StefanScherer/windows-docker-machine

Disable Autostart for 2016 and 2016-box

Closed this issue · 2 comments

Hey @StefanScherer

I saw that for 2016 and 2016-box the autostart: false is missing:

config.vm.define "2016" do |cfg|
cfg.vm.box = "windows_2016_docker"
cfg.vm.provision "shell", path: "scripts/create-machine.ps1", args: "-machineHome #{home} -machineName 2016"
end
config.vm.define "2016-box" do |cfg|
cfg.vm.box = "StefanScherer/windows_2016_docker"
cfg.vm.provision "shell", path: "scripts/create-machine.ps1", args: "-machineHome #{home} -machineName 2016-box"
end

Was that done on purpose or should I create a PR to fix that?

Good catch. A PR is fine to disable autostart. Thanks.

Fixed with #71