官方的源很慢,使用阿里的:
- unload 原的docker
sudo apt-get remove docker docker-engine docker-ce docker.io
sudo apt-get update
- apt-get 可以使用https库
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
- 添加docker的使用的公钥
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
- 添加docker的远程库
add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
- 安装docker-ce
sudo apt-get install -y docker-ce
- 启动docker
sudo systemctl status docker
- 运行hello-world
sudo docker run hello-world