morgante / puppet-docker

A Boxen-flavored Puppet module for using Docker on OS X
MIT License
10 stars 2 forks source link

Symlink broken with recent boot2docker #2

Open jarib opened 10 years ago

jarib commented 10 years ago

The shell script was removed in steeve/boot2docker@223004d, so the symlink set up by this module will no longer work.

As a workaround I've just installed boot2docker through homebrew using package { "boot2docker": }. Seems to work OK.

taybin commented 10 years ago

Ran into this too.

jarib commented 10 years ago

I ended up using the new, official installer:

package { 'Boot2Docker':
  provider => 'pkgdmg',
  source   => 'https://github.com/boot2docker/osx-installer/releases/download/v1.0.0/Boot2Docker-1.0.0.pkg',
}
kortina commented 9 years ago

Also ran into this. Is running @jarib's suggested package 'Boot2Docker':... command sufficient to entirely replace running include docker or is it something you should run in addition to include docker?