編碼的世界 / 優質文選 / 女人

Ubuntu安裝與卸載docker


2022年6月26日
-   

開始安裝
1、由於apt官方庫裏的docker版本可能比較舊,所以先卸載可能存在的舊版本:
sudo apt-get remove docker docker-engine docker-ce docker.io

2、更新apt包索引
sudo apt-get update

3、安裝以下包以使apt可以通過HTTPS使用存儲庫(repository)
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common

4、添加Docker官方的GPG密鑰
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

5、使用下面的命令來設置stable存儲庫
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

6、再更新一下apt包索引
sudo apt-get update

7、安裝最新版本的Docker CE
sudo apt-get install -y docker-ce

8、在生產系統上,可能會需要應該安裝一個特定版本的Docker CE,而不是總是使用最新版本
apt-cache madison docker-ce

9、列出可用的版本

選擇要安裝的特定版本,第二列是版本字符串,第三列是存儲庫名稱,它指示包來自哪個存儲庫,以及擴展它的穩定性級別。要安裝一個特定的版本,將版本字符串附加到包名中,並通過等號(=)分隔它們:
sudo apt-get install docker-ce=<VERSION>

10、驗證docker
1、查看docker服務是否啟動:
systemctl status docker

2、若未啟動,則啟動docker服務:
sudo systemctl start docker

3、經典的hello world:
sudo docker run hello-world

熱門文章