How to run “docker-machine create” in OS X?

前端 未结 3 1920
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 07:04

I started Docker and am now following the tutorial, but for all I know I couldn\'t run the docker-machine command on OS X.

The documentation states that you

3条回答
  •  情书的邮戳
    2021-02-01 07:38

    I had the same issue. At the same spot ;-) For me the xhyve driver, available from https://github.com/zchee/docker-machine-driver-xhyve, worked. In short:

    brew install docker-machine-driver-xhyve
    

    You get a notice some links need to be created manually, so copy those and execute

    sudo chown root:wheel /usr/local/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
    sudo chown root:wheel /usr/local/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
    

    Create:

    docker-machine create --driver xhyve manager
    

    Without VirtualBox. Im using OS X 10.11.6, too.

提交回复
热议问题