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.
This commit is contained in:
Mitchell Hashimoto 2014-05-01 09:51:41 -07:00
parent cca9bffa90
commit 76e29b912f
1 changed files with 1 additions and 1 deletions

View File

@ -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