docker安装

windows 安装 docker 建议直接上虚拟机+Ubuntu iso,用WSL有太多坑,当然想尝试没问题。

准备工作

安装Ubuntu系统虚拟机

https://hc1023.github.io/2019/11/27/VMlinux/

卸载已有的旧版本

1
sudo apt-get remove docker docker-engine docker.io containerd runc

安装

set up the repository

1
2
3
4
5
6
7
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common

添加官方GPG key

1
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

通过搜索后8位数字来确认有相应指纹的密钥 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88

1
$ sudo apt-key fingerprint 0EBFCD88
1
2
3
4
pub   rsa4096 2017-02-22 [SCEA]
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid [ unknown] Docker Release (CE deb) <docker@docker.com>
sub rsa4096 2017-02-22 [S]

set up stable repository

1
2
3
4
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"

安装docker引擎

1
2
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io

测试

1
sudo docker run hello-world

成功