osx - Docker Toolbox Mac command line and Kitematics fails -
i have installed new docker toolbox application mac using both graphical installer (the official one) , brew cask install
.
in both cases, virtual machine correctly created, seems wrong in environment because when try execute docker-machine
on command line, fails this:
$ docker-machine env default open /users/adeynack/.docker/machine/machines/default/ca.pem: no such file or directory
when try kitematics
, fails this:
i tried delete vm , retry setup
, without success. insight or idea welcome here.
edit: using test build 5.0.3 of virtualbox.
this may have been caused issue virtualbox
. issue has been fixed latest testbuild virtualbox here: virtualbox test build.
you have uninstall current version of virtual box , install test build.
edit
you may need create new docker machine.
- create new docker machine:
docker-machine create --driver virtualbox dev
- next, start dev environment:
docker-machine env dev
- set environment dev machine:
eval "$(docker-machine env dev)"
Comments
Post a Comment