Ubuntu18.04安装docker

1、更新软件列表

sudo apt-get update

2、安装 apt 依赖包

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

3、添加 Docker 密钥

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

4、设置apt仓库

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

5、安装 Docker-ce
sudo apt-get install docker-ce docker-ce-cli containerd.io

6、查看是否安装成功
docker version

你可能感兴趣的:(运维/安装)