在Windows上如何安装Docker的代码实例分享


本文摘自PHP中文网,作者黄舟,侵删。

下载Docker for Windows

稳定版

准备安装Docker for Windows
安装前请保障 Windows10 版本大于或等于 1703,os版本大于或等于 15063
我在版本1607下安装就会有找不到引用汇编文件的错误
必须启用Hyper-V软件包才能使Docker for Windows工作。如果您的系统不满足这些要求,您可以安装Docker Toolbox,它使用Oracle Virtual Box而不是Hyper-V。
在 Windows 10 上安装 Hyper-V 网址

安装Docker for Windows
双击InstallDocker.msi以运行安装程序。

检查Docker
打开PowerShell,输入以下代码

1

2

3

4

5

6

7

8

PS C:\Users\Docker> docker --version

Docker version 17.03.0-ce, build 60ccb22

 

PS C:\Users\Docker> docker-compose --version

docker-compose version 1.11.2, build dfed245

 

PS C:\Users\Docker> docker-machine --version

docker-machine version 0.10.0, build 76ed2a6

运行docker run hello-world来测试从Docker Hub拉一个镜像并启动一个容器。

1

PS C:\Users\jdoe> docker run hello-world

1

2

3

4

5

6

7

8

Hello from Docker. This message shows that your installation appears

to be working correctly.

To generate this message, Docker took the following steps:

The Docker client contacted the Docker daemon.

The Docker daemon pulled the "hello-world" image from the Docker Hub.

The Docker daemon created a new container from that image which runs the executable that produces the output you are currently

reading.

The Docker daemon streamed that output to the Docker client, which sent it to your terminal.

尝试更有野心的东西,并使用此命令运行Ubuntu容器。
这将下载ubuntu容器镜像并启动它。以下是在powerhell中运行此命令的输出。

1

2

3

4

5

6

PS C:Usersjdoe> docker run -it ubuntu bash

Unable to find image 'ubuntu:latest' locally latest: Pulling from

library/ubuntu 5a132a7e7af1: Pull complete fd2731e4c50c: Pull complete

28a2f68d1120: Pull complete a3ed95caeb02: Pull complete Digest:

sha256:4e85ebe01d056b43955250bbac22bdb8734271122e3c78d21e55ee235fc6802d

Status: Downloaded newer image for ubuntu:latest

使用docker开启nginx服务器

1

PS C:\Users\jdoe> docker run -d -p 80:80 --name webserver nginx

1

2

3

4

5

6

7

8

Unable to find image 'nginx:latest' locally latest: Pulling from

library/nginx

fdd5d7827f33: Pull complete a3ed95caeb02: Pull complete 716f7a5f3082:

Pull complete 7b10f03a0309: Pull complete Digest:

sha256:f6a001272d5d324c4c9f3f183e1b69e9e0ff12debeb7a092730d638c33e0de3e

Status: Downloaded newer image for nginx:latest

dfe13c68b3b86f01951af617df02be4897184cbf7a8b4d5caf1c3c5bd3fc267f

访问http://localhost/以显示nginx起始页。

使用 docker ps 命令查看容器列表
使用 docker images 命令查看镜像列表

加速器

在系统右下角托盘图标内右键菜单选择 Settings,打开配置窗口后左侧导航菜单选择 Docker Daemon。编辑窗口内的JSON串,填写如阿里云、DaoCloud之类的加速器地址,如:

1

2

3

4

5

6

7

{

    "registry-mirrors": [

      "https://sr5arhkn.mirror.aliyuncs.com",

      "http://14d216f4.m.daocloud.io"

    ],

    "insecure-registries": []

  }

以上就是在Windows上如何安装Docker的代码实例分享的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

win10开机提示“Windows sockets启动失败”怎么解决?

win10指纹设置没反应怎么办?

win10如何把索引文件Windows.edb移到非系统盘?

地址重定位指的是什么

Windows电脑显示无法完成更新,正在撤销更改

Windows中进行那些操作可以退出应用程序?

Windows技巧:如何退出Windows客户体验改善计划

无法定位程序输入点怎么办

Windows操作系统的主要功能是什么?

Windows剪贴板是什么中的一块区域?

更多相关阅读请进入《Windows》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...