安装
- 第一步:
sudo apt-get install
apt-transport-https
ca-certificates
curl
software-properties-common
- 第二步:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - 第三步:
sudo add-apt-repository
"deb [arch=amd64] https://download.docker.com/linux/ubuntu
$(lsb_release -cs)
stable" - 第四步:
sudo apt-get update - 第五步:
sudo apt-get install docker-ce
测试:
docker run hello-world
网友评论