ubantu下docker安裝

開始安裝linux

因爲apt官方庫裏的docker版本可能比較舊,因此先卸載可能存在的舊版本: docker

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

更新apt包索引ubuntu

sudo apt-get update

安裝如下包以使apt能夠經過HTTPS使用存儲庫(repository):curl

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

添加Docker官方的GPG密鑰:url

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

使用下面的命令來設置stable存儲庫:spa

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

再更新一下apt包索引: code

sudo apt-get update

安裝最新版本的Docker CE:blog

sudo apt-get install -y docker-ce

在生產系統上,可能會須要應該安裝一個特定版本的Docker CE,而不是老是使用最新版本: 列出可用的版本:索引

apt-cache madison docker-ce

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

sudo apt-get install docker-ce=<VERSION>

啓動docker服務: 

systemctl start docker
相關文章
相關標籤/搜索