Ubuntu20.04搭建docker

1.安装软件源

1
sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

2.导入源仓库的 GPG key

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

3.将 Docker APT 软件源添加到你的系统

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

4.更新源软件包

1
sudo apt update

5.安装最新版docker

1
sudo apt install docker-ce docker-ce-cli containerd.io

6.查看docker状态

1
systemctl status docker

————————————————
版权声明:本文为CSDN博主「向 着 太 阳 出 发」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_46192667/article/details/124101309