A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 上海分校-小影 于 2018-5-11 11:37 编辑

一,选题原因:
由于默认的Docker安装方式在windows默认使用的是Hyper-V,本身docker使用是没有问题的,但Hyper-V会导致其他虚拟机软件无法使用,例如vm-ware以及virtual-box

二,准备环境
软件资料:
https://download.docker.com/win/stable/DockerToolbox.exe


系统开启CPU虚拟化支持:



三,安装Docker Toolbox
以下软件将被安装到系统,如果已经安装可以选择跳过

- Docker Client for Windows
- Docker Toolbox management tool and ISO
- Oracle VM VirtualBox
- Git MSYS-git UNIX tools

1. 双击Docker Toolbox启动安装


2. 选择安装的内容


3. 一路下一步直到安装成功



四,检查安装


1. 在桌面上将有三个对应软件图标


2. 双击Docker Quickstart启动


3.解决方案
3.1手动下载:
https://github.com/boot2docker/boot2docker/releases

下载工具建议使用free download manager


3.2 然后复制boot2docker.iso 到 C:\Users\YourUserName.docker\machine\cache\目录后重新启动

    >注:这里的YourUserName表示你自己电脑上的用户名

4. 正常启动显示结果



五.测试运行
1. 显示 helloworld

    docker run hello-world
    Unable to find image 'hello-world:latest' locally
    latest: Pulling from library/hello-world
    9bb5a5d4561a: Pull complete
    Digest: sha256:f5233545e43561214ca4891fd1157e1c3c563316ed8e237750d59bde73361e77
    Status: Downloaded newer image for hello-world:latest
   
    Hello from Docker!
    This message shows that your installation appears to be working correctly.
   
    To generate this message, Docker took the following steps:
     1. The Docker client contacted the Docker daemon.
     2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
        (amd64)
     3. The Docker daemon created a new container from that image which runs the
        executable that produces the output you are currently reading.
     4. The Docker daemon streamed that output to the Docker client, which sent it
        to your terminal.
   
    To try something more ambitious, you can run an Ubuntu container with:
     $ docker run -it ubuntu bash
   
    Share images, automate workflows, and more with a free Docker ID:
     https://hub.docker.com/
   
    For more examples and ideas, visit:
     https://docs.docker.com/engine/userguide/

当看到hello from docker 表示成功。














0 个回复

您需要登录后才可以回帖 登录 | 加入黑马