開始安裝linux
$ sudo apt-get remove docker docker-engine docker-ce docker.iodocker
$ sudo apt-get updateubuntu
$ sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-commoncurl
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -url
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"索引
$ sudo apt-get updaterem
$ sudo apt-get install -y docker-ce字符串
列出可用的版本:get
$ apt-cache madison docker-ceit
選擇要安裝的特定版本,第二列是版本字符串,第三列是存儲庫名稱,它指示包來自哪一個存儲庫,以及擴展它的穩定性級別。要安裝一個特定的版本,將版本字符串附加到包名中,並經過等號(=)分隔它們:
$ sudo apt-get install docker-ce=<VERSION>
驗證docker
$ systemctl status docker
$ sudo systemctl start docker
$ sudo docker run hello-world
有以上輸出則證實docker已安裝成功!