docker安装及使用说明
- Docker安装
- Windows版本
- Linux版本
- Docker 使用
- 如果已经正确安装了docker,在日常使用中,关于常用命令和一些使用技巧可参考文章 [docker常用命令]
Docker安装
Windows版本
- 微软要求 Windows 10 版本 2004 及更高版本(内部版本 19041 及更高版本)或 Windows 11
- 设置->更新和安全->操作系统内部版本信息
- 下载WSL2需要的linux内核 网址: Microsoft WSL2内核下载
- 点击下载最新的更新包,下好后双击运行安装即可
- 备注:win11安装时可能显现错误信息(
Windows Subsystem for Linux Update - 5.10.43 安装错误 - 0x80070643
), 在此我参考 Windows 11 安装 WSL2 由于并不是win11专业版没有Hyper-V
所以只开启了Windows虚拟机监控程序平台
和Linux子系统
然后重启就可以安装了.
- 控制面板->程序->启用或关闭Windows功能->
- 勾选 适用于Linux的Windows子系统
- 勾选 虚拟机平台
- 将WSL2设置为默认版本:CMD运行
WSL --set-default-version 2
- 下载docker 桌面版 Docker Desktop
- 下好
docker-desktop
的安装包后直接双击运行安装即可- 进入后,点击右上角的’设置’, 勾选基于WSL2的引擎 (
Use the WSL 2 based engine (Windows Home can only run the WSL 2 backend)
)
- 进入后,点击右上角的’设置’, 勾选基于WSL2的引擎 (
- CMD运行
WSL -l -v
以及CMD运行docker
验证是否安装成功
Linux版本
- 在此我用的时 Ubuntu 22.04 的版本
- 参考教程: Ubuntu Docker从入门到实践
具体进行操作如下:
-
卸载旧版本
- 旧版本的 Docker 称为 docker 或者 docker-engine,使用以下命令卸载旧版本:
$ sudo apt-get remove docker \docker-engine \docker.io
- 旧版本的 Docker 称为 docker 或者 docker-engine,使用以下命令卸载旧版本:
-
使用 APT 安装
- 由于 apt 源使用 HTTPS 以确保软件下载过程中不被篡改。因此,我们首先需要添加使用 HTTPS 传输的软件包以及 CA 证书。
$ sudo apt-get update
$ sudo apt-get install \apt-transport-https \ca-certificates \curl \gnupg \lsb-release
- 鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。
- 为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥。
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg# 官方源 # $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
- 然后,我们需要向 sources.list 中添加 Docker 软件源
$ echo \"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null# 官方源 # $ echo \ # "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ # $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
- 由于 apt 源使用 HTTPS 以确保软件下载过程中不被篡改。因此,我们首先需要添加使用 HTTPS 传输的软件包以及 CA 证书。
-
安装 Docker
- 更新 apt 软件包缓存,并安装 docker-ce:
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
- 更新 apt 软件包缓存,并安装 docker-ce:
-
启动 Docker
$ sudo systemctl enable docker
$ sudo systemctl start docker
-
测试 Docker 是否安装正确
$ docker run --rm hello-world
输出:
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 theexecutable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent itto your terminal.To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bashShare 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/
- 若能正常输出以上信息,则说明安装成功。
Docker 使用
- 如果已经正确安装了docker,在日常使用中,可以使用命令来控制docker。
- 常用命令和一些使用技巧可参考文章 [docker常用命令]