您好,登錄后才能下訂單哦!
本篇內容介紹了“ubuntu怎么安裝docker”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
零:卸載舊版本
docker 的舊版本被稱為 docker,docker.io 或 docker-engine 。如果已安裝,請卸載它們:
$ sudo apt-get remove docker docker-engine docker.io containerd runc
當前稱為 docker engine-community 軟件包 docker-ce 。
一:設置倉庫
在新主機上首次安裝 docker engine-community 之前,需要設置 docker 倉庫。之后,您可以從倉庫安裝和更新 docker 。
更新 apt 包索引。
$ sudo apt-get update
安裝 apt 依賴包,用于通過https來獲取倉庫:
$ sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg-agent \ software-properties-common
添加 docker 的官方 gpg 密鑰:
$ curl -fssl https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
9dc8 5822 9fc7 dd38 854a e2d8 8d81 803c 0ebf cd88 通過搜索指紋的后8個字符,驗證您現在是否擁有帶有指紋的密鑰。
$ sudo apt-key fingerprint 0ebfcd88 pub rsa4096 2017-02-22 [scea] 9dc8 5822 9fc7 dd38 854a e2d8 8d81 803c 0ebf cd88 uid [ unknown] docker release (ce deb) <docker@docker.com> sub rsa4096 2017-02-22 [s]
使用以下指令設置穩定版倉庫
注意:目前 20.04 還沒有國內 docker 源,暫時用 18.04 版本。
$ sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ bionic \ stable"
二:安裝 docker engine-community
更新 apt 包索引。
$ sudo apt-get update
安裝最新版本的 docker engine-community 和 containerd
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
三:測試
輸入
$ sudo docker run hello-world
如果docker和你問好——或者說出現類似以下輸出
unable to find image 'hello-world:latest' locally latest: pulling from library/hello-world 1b930d010525: pull complete digest: sha256:c3b4ada4687bbaa170745b3e4dd8ac3f194ca95b2d0518b417fb47e5879d9b5f status: downloaded newer image for hello-world:latest hello from docker! this message shows that your installation appears to be working correctly. to generate this message, docker took the following steps: 1. the docker client contacted the docker daemon. 2. the docker daemon pulled the "hello-world" image from the docker hub. (amd64) 3. the docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. the docker daemon streamed that output to the docker client, which sent it to your terminal. to try something more ambitious, you can run an ubuntu container with: $ docker run -it ubuntu bash share images, automate workflows, and more with a free docker id: https://hub.docker.com/ for more examples and ideas, visit: https://docs.docker.com/get-started/
就說明安裝完事了。
四:免sudo運行&鏡像加速
免sudo
參考如下方法將用戶添加到docke組
$ sudo usermod -ag docker [你的用戶名]
重啟docker
$ sudo systemctl restart docker
(然而我的機器上發生了很詭異的事——我重啟docker服務后依然不能以普通用戶啟動docker。重啟機器后才能免sudo運行。)
docker鏡像加速
我用了阿里云的免費加速
“ubuntu怎么安裝docker”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。