赞
踩
因为我的电脑是window家庭版,所以安装的时候有点麻烦,记录下
需要Windows功能:Hyper-V。
打开控制面板 - 程序和功能 - 启用或关闭Windows功能,勾选Hyper-V,然后点击确定即可
但是我并没有在我电脑上找到这个文件,后来查询知道是因为windows家庭版的原因,但是换系统多么麻烦,于是乎:
新建一个记事本文件
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
然后把后缀改为bat,右键管理员身份运行。 这个过程需要稍等会儿 不要着急。
等待安装完成,输入Y自动重启电脑即可。
这次报的错误为Docker Desktop requires Windows 10 Pro or Enterprise version 15063 to run
意思是安装docker必须要win10专业版,我不信邪~
但是 docker 要查系统版本号怎么办?那就骗它。打开注册表编辑器,找到下图所示的 EditionID:
把数值数据改成 Professional,让docker认为我们是商业版哈哈哈。
再次安装 docker
Containers Windows Feature is not available
意思是容器窗口功能不可用
新建一个containers.bat,内容如下:
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*containers*.mum >containers.txt
for /f %%i in ('findstr /i . containers.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del containers.txt
Dism /online /enable-feature /featurename:Containers -All /LimitAccess /ALL
pause
保存后右键使用管理员权限运行
同理等待运行完成,输入Y重启电脑
再次安装 docker,成功运行
注意点:记得勾选 use windows containers instead of linux containers(使用 windows 容器而不是 linux 容器)
https://cr.console.aliyun.com/cn-hongkong/mirrors
因为我安装的是老版本,所以在:
将加速阿里云地址放到这里
就好了。
使用docker info命令查看是否成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。