providers/docker: choose proper provider for host VM

This commit is contained in:
Mitchell Hashimoto 2014-05-01 10:22:43 -07:00
parent 3ef77d395b
commit 744c9c9663
1 changed files with 3 additions and 2 deletions

View File

@ -85,8 +85,9 @@ module VagrantPlugins
vagrantfile_name: vf_file,
)
# TODO(mitchellh): configure the provider of this machine somehow
host_env.machine(host_machine_name, :virtualbox)
host_env.machine(
host_machine_name,
host_env.default_provider(exclude: [:docker]))
end
@host_vm