You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 1, 2021. It is now read-only.
I have a vagrant project that uses shared folders. The build breaks because I upgraded to VirtualBox 5.1 and the Guest Additions on boot2docker is still on 5.0. Below is the output of a vagrant up.
Bringing machine 'data' up with 'docker' provider...
Bringing machine 'percona' up with 'docker' provider...
Bringing machine 'memcached' up with 'docker' provider...
Bringing machine 'app' up with 'docker' provider...
Bringing machine 'phpfpm' up with 'docker' provider...
Bringing machine 'nginx' up with 'docker' provider...
==> data: Docker host is required. One will be created if necessary...
data: Vagrant will now create or start a local VM to act as the Docker
data: host. You'll see the output of the `vagrant up` for this VM below. data: cms: Box 'dduportal/boot2docker' could not be found. Attempting to find and install... cms: Box Provider: virtualbox cms: Box Version: >= 0 cms: Loading metadata for box 'dduportal/boot2docker' cms: URL: https://atlas.hashicorp.com/dduportal/boot2docker cms: Adding box 'dduportal/boot2docker' (v1.11.1) for provider: virtualbox cms: Downloading: https://atlas.hashicorp.com/dduportal/boxes/boot2docker/versions/1.11.1/providers/virtualbox.box cms: Successfully added box 'dduportal/boot2docker' (v1.11.1) for 'virtualbox'! cms: Importing base box 'dduportal/boot2docker'... cms: Matching MAC address for NAT networking... cms: Checking if box 'dduportal/boot2docker' is up to date... cms: Setting the name of the VM: bbl-cms_cms_1470245153891_69312 cms: Clearing any previously set network interfaces... cms: Preparing network interfaces based on configuration... cms: Adapter 1: nat cms: Adapter 2: hostonly cms: Forwarding ports... cms: 2375 (guest) => 2375 (host) (adapter 1) cms: 2376 (guest) => 2376 (host) (adapter 1) cms: 22 (guest) => 2222 (host) (adapter 1) cms: Running 'pre-boot' VM customizations... cms: Booting VM... cms: Waiting for machine to boot. This may take a few minutes... cms: SSH address: 127.0.0.1:2222 cms: SSH username: docker cms: SSH auth method: private key cms: Warning: Remote connection disconnect. Retrying... cms: Machine booted and ready! cms: Checking for guest additions in VM... cms: The guest additions on this VM do not match the installed version of cms: VirtualBox! In most cases this is fine, but in rare cases it can cms: prevent things such as shared folders from working properly. If you see cms: shared folder errors, please make sure the guest additions within the cms: virtual machine match the version of VirtualBox you have installed on cms: your host and reload your VM. cms: cms: Guest Additions Version: 5.0.18 cms: VirtualBox Version: 5.1 cms: Setting hostname... cms: Configuring and enabling network interfaces... cms: Mounting shared folders... cms: /var/www => /Users/jpresley/projects/bbl-cmsVagrant was unable to mount VirtualBox shared folders. This is usuallybecause the filesystem "vboxsf" is not available. This filesystem ismade available via the VirtualBox Guest Additions and kernel module.Please verify that these guest additions are properly installed in theguest. This is not a bug in Vagrant and is usually caused by a faultyVagrant box. For context, the command attemped was:set -emount -t vboxsf -o uid=`id -u docker`,gid=`getent group docker | cut -d: -f3` var_www /var/wwwmount -t vboxsf -o uid=`id -u docker`,gid=`id -g docker` var_www /var/wwwThe error output from the command was:mount: mounting var_www on /var/www failed: Protocol error
I have a vagrant project that uses shared folders. The build breaks because I upgraded to VirtualBox 5.1 and the Guest Additions on boot2docker is still on 5.0. Below is the output of a vagrant up.