dorker 安装

http://www.docker.org.cn/book/install/install-docker-win7-win8-requirements-38.html
1. 你先去下载Docker Toolbox, 然后先安装~ https://www.docker.com/docker-toolbox 2. 然后安装完之后会有 Quickstart 点开来,他有点像是命令列 接着你可能顺利进入, 也可能被显示要你开启BIOS的错误讯息 (没有错误请跳3) 2a. 你就要开机进到BIOS画面(开电脑的时候立即按F1, F2, F10, F11, F12可以进入的系统画面) 2b. 进到BIOS画面到各个分类中寻找"虚拟化技术"(visual technology)从停用改启用 3. 然后回到电脑在打开Quickstart 就会看到 Docker 的鲸鱼图案 4. 接着在Docker的指令列中输入 docker run b.gcr.io/tensorflow/tensorflow-full 5. 等一下下, 他就会安装好, 你就可以执行基本功能了!(后面几篇文档的教学就可以执行了)


https://stackoverflow.com/questions/43037196/docker-error-getting-ip-address-ssh-command-error-exit-status-255
windows下安装完Docker Toolbox后运行Docker Quickstart Terminal可能会看到如下错误

So I ran it again and I get this message.

enter image description here

so, When I tried "$docker-machine ls" command, the following message was printed.

NAME      ACTIVE   DRIVER       STATE     URL   SWARM   DOCKER    ERRORS
default   *        virtualbox   Running                 Unknown   ssh command error:
command : ip addr show
err     : exit status 255
output  :

To solve the problem, I tried the following command.

$ Docker-machine rm default
$ Docker-machine create --driver virtualbox default

Nevertheless, the same phenomenon repeats itself.

原文地址:https://www.cnblogs.com/developer-ios/p/7624882.html