摘要:容器是完全使用沙箱機制,相互之間不會有任何接口。今天這篇文章咱們就來將安裝到上。這個軟件非常好用,迅速流傳開來,成了許多程序員的必備工具。所以,自由軟件基金會決定,開發一個的替代品,取名為。
Docker 是一個開源的應用容器引擎,讓開發者可以打包他們的應用以及依賴包到一個可移植的容器中,然后發布到任何流行的 Linux 機器上,也可以實現虛擬化。容器是完全使用沙箱機制,相互之間不會有任何接口。
今天這篇文章咱們就來將Docker安裝到Ubuntu上。
1. 由于Ubuntu里apt官方庫里的docker版本可能比較低,因此先用下面的命令行卸載舊版本(如果有的話)
sudo apt-get remove docker docker-engine docker-ce docker.io
2. 更新apt包索引:
sudo apt-get update
3. 執行下列命令行,使apt可以通過HTTPS協議去使用存儲庫:
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
4. 添加Docker官方提供的GPG密鑰:
curl -fsSL https://download.docker.com/l... | sudo apt-key add -
什么是GPG密鑰呢?大家可以從阮一峰老師的博客:GPG入門教程里獲得答案:
1991年,程序員Phil Zimmermann為了避開政府監視,開發了加密軟件PGP。這個軟件非常好用,迅速流傳開來,成了許多程序員的必備工具。但是,它是商業軟件,不能自由使用。所以,自由軟件基金會決定,開發一個PGP的替代品,取名為GnuPG。這就是GPG的由來。
上面的文字出自阮一峰老師的博客鏈接:http://www.ruanyifeng.com/blo...
5. 設置stable存儲庫:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/l... $(lsb_release -cs) stable"
最后再次更新apt包索引:
6. 安裝最新版本的docker-ce:
sudo apt-get install -y docker-ce
安裝完畢后,可以看到Docker服務已經從/lib/systemd/system/docker.service啟動了,dockerd進程id為4921:
命令行ps -aux查看進程id為4921的進程路徑:/usr/bin/dockerd -H fd://
使用命令sudo docker version可以查看安裝docker的版本:
使用命令sudo docker run hello-world,能觀察到從遠程下載這個測試用的容器:Pulling from library/hello-world:
然后看到打印消息:Hello from Docker! 說明Docker安裝成功。
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/engin...
要獲取更多Jerry的原創技術文章,請關注公眾號"汪子熙"或者掃描下面二維碼:
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/32753.html
摘要:容器是完全使用沙箱機制,相互之間不會有任何接口。今天這篇文章咱們就來將安裝到上。這個軟件非常好用,迅速流傳開來,成了許多程序員的必備工具。所以,自由軟件基金會決定,開發一個的替代品,取名為。 Docker 是一個開源的應用容器引擎,讓開發者可以打包他們的應用以及依賴包到一個可移植的容器中,然后發布到任何流行的 Linux 機器上,也可以實現虛擬化。容器是完全使用沙箱機制,相互之間不會有...
閱讀 1393·2021-11-22 15:11
閱讀 2838·2019-08-30 14:16
閱讀 2755·2019-08-29 15:21
閱讀 2914·2019-08-29 15:11
閱讀 2451·2019-08-29 13:19
閱讀 2985·2019-08-29 12:25
閱讀 417·2019-08-29 12:21
閱讀 2829·2019-08-29 11:03