安装前提

Docker是基于linux的,在win10中安装wsl2:Windows Subsystem for Linux,让win10能够原生运行Linux二进制可执行文件的兼容层,且不会产生传统虚拟机或双启动设置开销。

总的来说类似安装一个 Windows 的子系统,在子系统里面运行 Linux 、Docker,并且以此为运行 VS code 的环境,就像在 Linux或Docker镜像 环境开发啦。

微软安装wsl2教程 或者安装:Hyper-V 微软开发的虚拟机

管理员 PowerShell 或 Windows 命令提示符中用命令操作,直接 wsl --install 就可以。

如果没完成不小心关了窗口...需要指定安装 分发:wsl --install -d Ubuntu

PS C:\Windows\system32> wsl --install -d Ubuntu
正在下载: Ubuntu
安装过程中出现错误。分发名称: 'Ubuntu' 错误代码: 0x80072f78]
PS C:\Windows\system32> wsl --list --online
以下是可安装的有效分发的列表。
请使用“wsl --install -d <分发>”安装。 NAME FRIENDLY NAME
Ubuntu Ubuntu
Debian Debian GNU/Linux
kali-linux Kali Linux Rolling
openSUSE-42 openSUSE Leap 42
SLES-12 SUSE Linux Enterprise Server v12
Ubuntu-16.04 Ubuntu 16.04 LTS
Ubuntu-18.04 Ubuntu 18.04 LTS
Ubuntu-20.04 Ubuntu 20.04 LTS
PS C:\Windows\system32> wsl -l -v
适用于 Linux 的 Windows 子系统没有已安装的分发版。
可以通过访问 Microsoft Store 来安装分发版:
https://aka.ms/wslstore
PS C:\Windows\system32> wsl --install -d Ubuntu
正在下载: Ubuntu
安装过程中出现错误。分发名称: 'Ubuntu' 错误代码: 0x80072f78]
PS C:\Windows\system32> wsl --install -d Ubuntu
正在下载: Ubuntu
安装过程中出现错误。分发名称: 'Ubuntu' 错误代码: 0x80072f78]
PS C:\Windows\system32> wsl --install -d Ubuntu
正在下载: Ubuntu
安装过程中出现错误。分发名称: 'Ubuntu' 错误代码: 0x80072eff]
PS C:\Windows\system32> wsl --install -d Ubuntu
正在下载: Ubuntu
正在安装: Ubuntu
已安装 Ubuntu。
正在启动 Ubuntu…
PS C:\Windows\system32>

安装过程中出现错误。分发名称: 'Ubuntu' 错误代码: 0x80072f78]  这个是因为网络问题,就和访问 GitHub 类似。

启动 Ubuntu 过后稍等一下,提示设置用户名和密码,完事!

Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username: fyfh
New password:
Retype new password:
passwd: password updated successfully
Installation successful!
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details. Welcome to Ubuntu 20.04 LTS (GNU/Linux 4.4.0-19041-Microsoft x86_64) * Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage System information as of Sat May 28 20:13:43 CST 2022 System load: 0.52 Processes: 7
Usage of /home: unknown Users logged in: 0
Memory usage: 38% IPv4 address for eth0: 192.168.0.108
Swap usage: 1% 0 updates can be installed immediately.
0 of these updates are security updates. The list of available updates is more than a week old.
To check for new updates run: sudo apt update This message is shown once once a day. To disable it please create the
/home/fyfh/.hushlogin file.
fyfh@DESKTOP-UP9N3U4:~$

在开始菜单会有 Ubuntu 启动图标。

安装 Docker Desktop WSL 2 backend

微软教程安装docker并使用vscode连接   Docker官方说明

下载 Docker Desktop

安装 Docker Desktop , 提示启用 WSL 2 代替 Hyper-V 和 添加桌面快捷方式,勾上即可(360阻止程序,全允许了,文件关联开启启动啥的)。安装成功按钮要求登出,保存好文件,点击。

PS:第一次运行 Docker Desktop 提示 WSL 2 installation is incomplete ... wsl2安装未完成,不知道是不是没装完关了窗口的原因,要求下载安装 Linux 内核更新包后重启 Docker,do as it says.

设置里面 选中使用基于 WSL 2 的引擎复选框。

进入powershell输入

docker run hello-world

会下载一个 简单镜像,正常运行就安装好啦!

PS C:\Windows\system32> docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
2db29710123e: Pull complete
Digest: sha256:80f31da1ac7b312ba29d65080fddf797dd76acfb870e677f390d5acba9741b17
Status: Downloaded newer image for hello-world:latest Hello from Docker!
This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal. To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/ For more examples and ideas, visit:
https://docs.docker.com/get-started/

一些设置

WSL 可以在 v1 或 v2 模式下运行分发,确保分发在 WSL 2 模式下运行。

要检查 WSL 模式

wsl -l -v

将现有的 Linux 发行版升级到 v2

wsl --set-version (发行版名称) 2

将 v2 设置为将来安装的默认版本

wsl --set-default-version 2

当 Docker Desktop 启动时,转到Settings > Resources > WSL Integration,可以看到已经安装的发行版,只有 Ubuntu (可以勾上),Docker-WSL 集成将在默认 WSL 发行版上启用。

更改默认 WSL 发行版

wsl --set-default <distro name>

将 Ubuntu 设置为默认 WSL 发行版:wsl --set-default ubuntu

修改Docker Engine配置,增加镜像仓库地址

{
"builder": {
"gc": {
"defaultKeepStorage": "20GB",
"enabled": true
}
},
"experimental": false,
"features": {
"buildkit": true
},
"registry-mirrors": [
"https://xxxxx.mirror.aliyuncs.com",
"http://hub-mirror.c.163.com",
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn"
]
}

registry-mirrors 镜像地址,阿里云,网易,Docker中国区官方镜像地址,中国科技大学地址。

更改路径使应用获得最佳的文件系统性能

Docker 默认安装在c盘且安装过程中不可修改安装位置,安装、运行镜像挂载文件和win c盘在一起会影响性能,移动到其他盘符。

删除所有容器(或在图形界面操作)

docker rm $(docker ps -a -q)

关闭所有发行版

wsl --shutdown

指定盘符文件夹(提前创建好文件夹),备份已有image数据

wsl --export docker-desktop-data D:\docker-desktop\docker-desktop-data.tar

注销当前的docker-desktop-data发行版

wsl --unregister docker-desktop-data

指定盘符文件位置(D:\docker-desktop\data),导入先前的备份

wsl --import docker-desktop-data D:\docker-desktop\data D:\docker-desktop\docker-desktop-data.tar --version 2

重新运行即可。

PS:到此处,即可在 VS code 中安装 Remote Containers 扩展,然后在左侧扩展小图标找到它,远程资源管理器,点击,出来选择 WSL Targets ,就会看见默认的 Ubuntu

点击红线上按钮,打开新的 VS code 窗口,既是已 Ubuntu 为环境。不过此时打开文件,是没有项目文件的,也不好访问 Ubuntu 外面(主机)的文件,用其他的扩展好像可以(Remote Development 一系列微软出的扩展),没测试。

下面安装其他镜像容器,并且配置映射主机文件到容器内,方便每次使用。

deepo 比较大,可以在 https://hub.docker.com/ ,上搜索其他很小的镜像,专门的内置了 mysql 的, redis 的,或者 golang 的,很小,可以几个一起跑。

安装deepo镜像CPU版

powershell 中

docker pull ufoym/deepo:cpu

设置、启动容器:

docker run -it -p 8088:88 --name docker-go -v D:/workspace:/home/workspace ufoym/deepo:cpu
  • -it   -t 让docker分配一个伪终端并绑定到容器的标准输入上, -i  让容器的标准输入保持打开。不加 -it ,命令执行了会自动退出。因为如果没有衔接输入流,马上就结束了。加 -it 后docker命令会为容器分配一个伪终端,并接管其stdin/stdout支持交互操作,这时候bash命令不会自动退出。
  • -p  表示对端口号进行映射,即将 docker 容器的 88 号端口映射到宿主机的 8088 端口。
  • --name 将容器命名为 docker-go,指定名称方面下次运行,不指定则会随机命名。
  • -v D:/workspace:/home/workspace 将宿主机的 D:/workspace 目录映射到容器的 /home/workspace 目录,方便容器和宿主机间共享数据,可以共享多个目录(-v D:/workspace:/home/workspace -v D:/other:/other)
  • ufoym/deepo:cpu 镜像名称

或者用图形界面启动,填写参数,左侧 images 镜像选项,能看到所有下载的镜像,点击镜像对应的 Run 上面的配置按钮,就是没让配置 容器的端口,不过无所谓啦。

填好配置过后 Run ,会跳到  containers 栏,看到刚命名的  docker-go 已经跑起来了。

在 VS code 中安装 Docker 扩展、Remote Containers 扩展,然后点击左侧 docker 图标,在 container 栏 右键 已经启动的容器,点击 Attach Visual Studio Code,新弹出的 VS code 界面既是在启动的容器环境中了,并且打开文件夹选择时可以看到主机映射进去的工作目录

下次使用直接按容器名称运行

docker container start docker-go

或者图形界面保存的有,点击按钮直接运行。

或者就都在 VS code 里面操作!此时 Docker 扩展 和 Remote Containers(选择 containers) 扩展 里面都可以直接启动、打开容器 VS code,前提是运行期 Docker Desktop。

PS:如果不安装 Remote Containers,会没有 Attach Visual Studio Code 选项,只有一个 Attach Shell ,会打开操作容器的终端。

容器环境配置

新开的 VS code 窗口相当于在容器里打开,而容器里面不能直接使用外面 VS code 安装的扩展,其他的类似GO环境、Flutter环境,都需要在容器里面安装。

扩展分为了本地和容器内

安装容器扩展,正常搜索,然后点击安装

其他的,就在VS code 终端里面用命令安装了。

Windows 安装 Docker 并使用 VS code 连接的更多相关文章

  1. windows使用docker运行mysql等工具(一)windows安装docker

    由于我本地的mysql版本比较低,最近想着要升级一下mysql版本,鉴于docker容器的火热,就想着在本地装个docker环境,然后下载最新版的mysql镜像,完成mysql8.0的安装.电脑是wi ...

  2. [已解决]windows安装docker的问题

    windows下载安装docker出现的问题 进入powershell后输入docker --version报错: could not read CA certificate "C:\\Us ...

  3. Windows安装Docker & Docker-Compose & 配置docker私有仓库

    一定要给windows先创建软连接,不然系统盘会爆表的: mklink /j .docker D:\Administrator\.docker Win7安装Docker Dockerfile # FR ...

  4. windows 安装docker报错:Error checking TLS connection: ssh command error: command : ip addr show

    今天安装docker部署的时候总是再报这个错误. 报错的原因是初始化的时候出错了. 在docker 安装目录下有一个文件,如下图所示 将它复制到你电脑用户名目录下生成.docker 的文件夹中,如下图 ...

  5. windows安装docker

    主要參考:http://docs.docker.com/installation/windows/ [1]安装完毕后同意后可能会报错: error in run: Failed to start ma ...

  6. Windows安装docker (带安装包)

    docker安装包链接 链接:https://pan.baidu.com/s/1JBk8GCH6j_WeGdoaUuIoWw 提取码:8kgg 我电脑上有了git所以没有勾选最后一个 安装完成后将此目 ...

  7. windows 安装 docker

    .https://download.docker.com/win/stable/InstallDocker.msi .设置环境变量 C:\Program Files (x86)\Git\bin .如果 ...

  8. Windows 安装 docker 以及1709的简单使用

    PS C:\> Install-Module -Name DockerMsftProvider -Repository PSGallery -Force PS C:\> Install-P ...

  9. windows安装docker,快捷启动方式无法启动

    1.在双击“Docker Quickstart Terminal”时弹出缺少快捷方式,截图如下 2.单机快捷方式查看属性,发现配置的git位置是有问题的 现在只需要把git的正确地址配置好就可以了 现 ...

  10. windows使用docker运行mysql等工具(二)安装运行mysql

    今天接着上一篇的内容继续来学习安装运行mysql.建议先阅读第一篇:windows安装docker 一 查看mysql版本 如果想知道mysql镜像具体有哪几个版本,需要去docker hub查看. ...

随机推荐

  1. mysql基础命令语法

    删除空格 update 表名 set 字段名 = replace(字段名 ,' ','') ; 临时表创建与删除 -- 创建临时表 create temporary table if not exis ...

  2. Jekyll + GitHub Pages + Vercel纯免费搭建独立博客

    大家一定不要随便立flag 10月份发了个朋友圈,有好兄弟留言说写个教程,我说好 然后一忙起来就忘了,昨天好兄弟追到知识星球,在一个新flag帖子下催更了 写个无废话极简 VSCode 从这下载:ht ...

  3. Hexo博客搭建记录

    Hexo博客搭建记录 参考视频:手把手教你从0开始搭建自己的个人博客 |无坑版视频教程 以下命令操作建议使用管理员权限完成 1. nodejs & hexo 安装 1.首先下载node.js, ...

  4. py之赋值,选择判断

    赋值机制 赋值之后:变量的地址就会指向同一个地址 a=123123 b=a id(a) id(b) 字符串是不论有多长内容一样地址一样 a='sadasd' b='sadasd' id(a) id(b ...

  5. 代码小DEMO随笔---JS原生手机版本alert弹框

    之前的随笔写的是WEB版本的弹框,这次是手机版本,欢迎路过的大佬们提出更好的写法~~ <!DOCTYPE html> <html lang="en"> &l ...

  6. qt获取子控件坐标

    QPoint pos = ui->m_blt->mapToGlobal(QPoint(0, 0)); 就可以了.

  7. SQLSERVER 快照隔离级别 到底怎么理解?

    一:背景 1. 讲故事 上一篇写完 SQLSERVER 的四个事务隔离级别到底怎么理解? 之后,有朋友留言问什么时候可以把 snapshot 隔离级别给补上,这篇就来安排,快照隔离级别看起来很魔法,不 ...

  8. 《Terraform 101 从入门到实践》 第四章 States状态管理

    <Terraform 101 从入门到实践>这本小册在南瓜慢说官方网站和GitHub两个地方同步更新,书中的示例代码也是放在GitHub上,方便大家参考查看. 军书十二卷,卷卷有爷名. 为 ...

  9. (原创)【B4A】一步一步入门03:APP名称、图标等信息修改

    一.前言 上篇 (原创)[B4A]一步一步入门02:可视化界面设计器.控件的使用 中我们已经了解了B4A程序的基本框架,现在我们还进一步讲解. 本篇文章会讲解如何修改APP的名称.图标等信息,以让一个 ...

  10. K8s 网络新手教程(Kubernetes Networking Guide for Beginners)

    K8s 网络新手教程(Kubernetes Networking Guide for Beginners) 原文链接: Kubernetes Networking Guide for Beginner ...