Docker Machine - 可以让你在 Windows 的命令行中运行 docker 引擎命令。
Docker Compose - 用来运行 docker-compose 命令。
Kitematic - 这是 Docker 的 GUI 版本。
Docker QuickStart shell - 这是一个已经配置好Docker的命令行环境。
Oracle VM Virtualbox - 虚拟机。
下载完成之后直接点击安装,安装成功后,桌边会出现三个图标,如下图所示:
点击 Docker QuickStart 图标来启动 Docker Toolbox 终端。
如果系统显示 User Account Control 窗口来运行 VirtualBox 修改你的电脑,选择 Yes。
$ 符号那里可以输入以下命令来执行。
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
Pulling repository hello-world
91c95931e552:Download complete
a8219747be10:Download complete
Status:Downloaded newer image for hello-world:latest
HellofromDocker.This message shows that your installation appears to be working correctly.To generate this message,Docker took the following steps:1.TheDockerEngine CLI client contacted the DockerEngine daemon.2.TheDockerEngine daemon pulled the "hello-world" image from the DockerHub.(Assuming it was not already locally available.)3.TheDockerEngine daemon created a new container from that image which runs the
executable that produces the output you are currently reading.4.TheDockerEngine daemon streamed that output to the DockerEngine CLI client, which sent it
to your terminal.Totry something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
For more examples and ideas, visit:
https://docs.docker.com/userguide/