Ubuntu安装Docker

卸载官方库中之前的旧版本

sudo apt-get remove docker docker-engine docker-ce docker.io

更新安装包列表

sudo apt-get update

安装以下包以使apt可以通过HTTPS使用存储库

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

添加Docker官方的GPG密钥

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

设置stable存储库:

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

更新安装包列表

sudo apt-get update

安装Docker

sudo apt-get install -y docker-ce

验证安装是否成功

查看Docker服务是否启动

systemctl status docker

如未启动,使用下面命令启动

sudo systemctl start docker

使用helloworld验证Docker

sudo docker run hello-world

你可能感兴趣的:(Linux,工具安装,ubuntu,docker,DDS)