• windows 家庭版本,安装docker


    创建一个hyperv.cmd

    内容如下:

    pushd "%~dp0"
    
    dir /b %SystemRoot%servicingPackages*Hyper-V*.mum >hyper-v.txt
    
    for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%servicingPackages\%%i"
    
    del hyper-v.txt
    
    Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

    然后管理员身份运行,最后会提示重启,重启之后可以在服务中开启

    管理员运行CMD,输入如下伪装专业版命令

    REG ADD "HKEY_LOCAL_MACHINEsoftwareMicrosoftWindows NTCurrentVersion" /v EditionId /T REG_EXPAND_SZ /d Professional /F

    然后下载docker.exe,安装,到最后一部可能会报错。具体的我当时没截图,可以复制报错信息百度,就是下面这个代码

    containers.bat文件

    pushd "%~dp0"
    dir /b %SystemRoot%servicingPackages*containers*.mum >containers.txt
    for /f %%i in ('findstr /i . containers.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%servicingPackages\%%i"
    del containers.txt
    Dism /online /enable-feature /featurename:Containers -All /LimitAccess /ALL
    pause

    跟上面那个方法一样。

    这下就能成功安装了,安装好了别忘记登录和改镜像

    安装地址

    https://www.cnblogs.com/samwu/p/10360943.html

    官方镜像地址

    https://www.daocloud.io/mirror#accelerator-doc

  • 相关阅读:
    ansible
    爬虫框架之scrapy
    Mongodb
    xml 创建 添加节点或属性(自定义,复制)
    web站点崩溃的原因总结
    C# 关闭正在执行的文件
    254. Factor Combinations
    256. Paint House
    156. Binary Tree Upside Down
    170. Two Sum III
  • 原文地址:https://www.cnblogs.com/chenliuxiao/p/12590998.html
Copyright © 2020-2023  润新知