hashicorp / vagrant

Vagrant is a tool for building and distributing development environments.
https://www.vagrantup.com
Other
26.07k stars 4.42k forks source link

Docker Provider support for VirtualBox Guest Additions #7440

Open jdileonardo opened 8 years ago

jdileonardo commented 8 years ago

As boot2docker now supports VirtualBox guest additions:https://github.com/boot2docker/boot2docker/pull/534

On Windows, why does it disallow me from doing the following for "type"

Relevant Vagrantfile info:

config.vm.synced_folder "FAKEPATH", "#FAKEPATH", type:"virtualbox" config.vm.provider "docker" do |d|

Output

$ vagrant up
Bringing machine 'default' up with 'docker' provider...
==> default: Docker host is required. One will be created if necessary...
    default: Docker host VM is already ready.
The synced folder type 'virtualbox' is reporting as unusable for
your current setup. Please verify you have all the proper
prerequisites for using this shared folder type and try again.

Am i missing something?

sethvargo commented 8 years ago

We use a custom boot2docker image that probably does not have support for this yet. Tagging.

Kwadz commented 6 years ago

Any update about this?