From 744c9c96635cfaef921093dd8eb93d557a0e5127 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 1 May 2014 10:22:43 -0700 Subject: [PATCH] providers/docker: choose proper provider for host VM --- plugins/providers/docker/provider.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/providers/docker/provider.rb b/plugins/providers/docker/provider.rb index 4c25eea6c..babc3765f 100644 --- a/plugins/providers/docker/provider.rb +++ b/plugins/providers/docker/provider.rb @@ -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