1.修改默认安装路径
查看Docker文档使用命令行安装方式
官网地址:
文档地址:
https://docs.docker.com/desktop/setup/install/windows-install/
命令位置:
Home/Manuals/Docker Desktop/Setup/Install/Windows
Install Docker Desktop on Windows
Install from the command line
命令:
start /w "" "Docker Desktop Installer.exe" install --backend=wsl-2 --installation-dir=D:\yingwenlujing\docker\anzhuang\docker --wsl-default-data-root=D:\yingwenlujing\docker\anzhuang\wsl --accept-license
2.准备安装环境
①搜索启用或关闭Windows功能
②开启虚拟机平台、适用于Linux的Windows子系统、Windows虚拟机监控程序平台
开启:
Windows虚拟机监控程序平台
适用于Linux的Windows子系统
虚拟机平台
3.搭建WSL2环境
WSL2:允许用户在Windows上运行受支持的Linux发行版
①确认windows版本是否符合要求:必须是win11或者win10 内部版本190411以上。
win+R后输入winver
点击确定会展示具体windows版本
②如果windows版本不符合要求,需要升级后再进行下面的操作。
③以管理员身份运行cmd窗口或者powershell窗口
#查询wsl版本
wsl -l -v
#安装wsl
wsl --install
#将wsl版本设为2(此时应该wsl1版本)
wsl --set-default-version 2
4.安装docker
官网下载:
https://www.docker.com/get-started/
5.配置阿里镜像加速器
①登录自己的阿里云账号
②搜索“容器镜像服务”-“管理控制台”-“镜像加速器”-“加速器”
将地址复制出来
③打开docker-右上角齿轮标志-“Docker Engine”-修改内容
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": false,
"features": {
"buildkit": true
},
"registry-mirrors":[
"https://bqrih6nl.mirror.aliyuncs.com"
]
}
registry-mirrors就是加速器地址
6.检查docker版本
#查看docker客户端的版本信息
docker --version
#查看docker的详细版本信息
docker version
其他:
可参考的docker加速器配置:
{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": false,
"features": {
"buildkit": true
},
"registry-mirrors": [
"https://dhorj2ih.mirror.aliyuncs.com",
"http://hub-mirror.c.163.com",
"https://mirror.baidubce.com",
"https://docker.mirrors.sjtug.sjtu.edu.cn",
"https://x9r52uz5.mirror.aliyuncs.com",
"https://dockerhub.icu",
"https://docker.chenby.cn",
"https://docker.1panel.live",
"https://docker.awsl9527.cn",
"https://docker.anyhub.us.kg",
"https://dhub.kubesre.xyz"
]
}