From 76e29b912fffb82832289201190b4a8f1e77fcae Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 1 May 2014 09:51:41 -0700 Subject: [PATCH] providers/docker: lower priority We do this mostly because Docker is the only provider that using it requires some amount of Docker-specific knowledge. VirtualBox, VMware, etc. kind of "just work". It is not the likely case that someone does a `vagrant up` and expects Docker, at this point. --- plugins/providers/docker/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/providers/docker/plugin.rb b/plugins/providers/docker/plugin.rb index b6988661b..5b024519a 100644 --- a/plugins/providers/docker/plugin.rb +++ b/plugins/providers/docker/plugin.rb @@ -16,7 +16,7 @@ module VagrantPlugins Docker containers. EOF - provider(:docker, box_optional: true, parallel: true) do + provider(:docker, box_optional: true, parallel: true, priority: 3) do require_relative 'provider' init! Provider