Ubuntu18.04環境安裝Docker CE
阿新 • • 發佈:2018-11-04
建立 REPOSITORY
1.更新索引包
更新 /etc/apt/sources.list 和 /etc/apt/sources.list.d 中列出的源的地址,這樣才能獲取到最新的軟體包
sudo apt-get update
2.獲取HTTPS支援
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
3.新增docker公共祕鑰(官方地址)
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
驗證此apt-key是否安裝成功
sudo apt-key fingerprint 0EBFCD88
4.設定版本型別,docker版本包括:stable、edge、test(每季度更新stable版本,每個月更新edge版本)。
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
修改的檔案在:/etc/apt/sources.list
終端執行時可以看到Ubuntu18.04對應版本為bionic
安裝 DOCKER CE
1.更新索引包
sudo apt-get update
2.安裝最新版Docker CE
sudo apt-get install docker-ce
或者安裝制定版本的Docker CE,生產環境安裝docker要指定版本安裝,不要安裝最新版本。
apt-cache madison docker-ce
解除安裝
1.解除安裝docker ce
sudo apt-get purge docker-ce
2.刪除映象、容器、卷
sudo rm -rf /var/lib/docker
參考文獻:https://docs.docker.com/install/linux/docker-ce/ubuntu/#upgrade-docker-ce