docker在windows10下面的安装
Posted @Kerry~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker在windows10下面的安装相关的知识,希望对你有一定的参考价值。
一、开启windows下面的Hyper-V(windows系统下面的虚拟环境)
Hyper-V 是微软开发的虚拟机,类似于 VMWare 或 VirtualBox,仅适用于 Windows 10。这是 Docker Desktop for Windows 所使用的虚拟机。
但是,这个虚拟机一旦启用,QEMU、VirtualBox 或 VMWare Workstation 15 及以下版本将无法使用!如果你必须在电脑上使用其他虚拟机(例如开发 android 应用必须使用的模拟器),请不要使用 Hyper-V!
需要重启电脑才会生效 Hyper-V虚拟环境
二、下载Docker Desktop Installer ,docker的安装应用
有两个地方下载:
方式一:https://hub.docker.com/ 官网下载
方式二:https://docs.docker.com/docker-for-windows/install/ 下载
我已经下载好了,提供百度网盘链接下载文件:
链接:https://pan.baidu.com/s/1bCi27kHUoLtE32mAuO49-A
提取码:ztcb
文件下载于2021-07-14 当前docker的最新版本
三、更改安装路径地址,点击下一步进行安装,查看安装是否完成 docker version ,运行 docker run hello-world 查看是否运行成功
下载之后直接点击运行即可(我的3.5.2版本)
安装完成以后,桌面会出现 Docker Desktop 快捷方式,点击启动即可
如果启动时候出现 关于 “ Docker ApiServices WSL2错误”(看下面解决方案)
搜索:PowerShell 命令输入框
运行命令 docker version 命令 出现以下内容就证明安装成功了
第一个程序都是经典的 hello world ,在PowerShell 上 运行 docker run hello-world 出现下面信息就证明你的docker已经安装完成了并且可以运行程序了!
如果在运行 docker run hello-world 命令时候出现
error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.40/version: open //./pipe/docker_
engine: The system cannot find the file specified. In the default daemon configuration on Windows, t
he docker client must be run elevated to connect. This error may also indicate that the docker daemo
n is not running.
解决:
cd "C:\\Program Files\\Docker\\Docker"
DockerCli.exe -SwitchDaemon
检查docker容器的详细信息:
docker ps
四、运行遇到WSL2错误,如何解决
原因:当前版本的docker-desktop已经默认开启支持WSL2,安装时保持默认选项直接下一步,安装完毕之后重启电脑。之后docker会弹出WSL2尚未配置完毕。①WSL2尚未安装 ②WSL2版本过老
解决办法:
①、先开启WSL(在 PowerShell 命令框下执行该命令)执行完成之后重启计算机
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
②、默认启用 WSL 2(在PowerShell 命令框执行)
wsl --set-default-version 2
③、启用“虚拟机平台”可选组件(在PowerShell 命令框执行)
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
④、下载WSL2的相关安装包
https://docs.microsoft.com/zh-cn/windows/wsl/install-win10 前往下载安装WSL2
或者你可以直接点击我的链接进行下载,双击运行下载包即可解决这个问题
下载WSL2更新包
五、运行遇到 error during connect 如何解决
error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.40/version: open //./pipe/docker_
engine: The system cannot find the file specified. In the default daemon configuration on Windows, t
he docker client must be run elevated to connect. This error may also indicate that the docker daemo
n is not running.
解决:
cd "C:\\Program Files\\Docker\\Docker"
DockerCli.exe -SwitchDaemon
网上说的都是因为默认使用的是Linux Containers,使用这个命令后改为Windows Containers
我暂时还不是很清楚。
六、配置镜像加速
国内从 DockerHub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务,例如:
- 科大镜像:https://docker.mirrors.ustc.edu.cn/
- 网易:https://hub-mirror.c.163.com/
- 阿里云:https://<你的ID>.mirror.aliyuncs.com
- 七牛云加速器:https://reg-mirror.qiniu.com
一般都是使用阿里云镜像
阿里云镜像获取地址:https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors,登陆后,左侧菜单选中镜像加速器就可以看到你的专属地址了。
以上是关于docker在windows10下面的安装的主要内容,如果未能解决你的问题,请参考以下文章
windows系统下sublime text3开发工具前端配置