在Ubuntu作業系統裡安裝Docker
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 | sudo apt-key add -
什麼是GPG金鑰呢?大家可以從阮一峰老師的部落格:GPG入門教程裡獲得答案:
1991年,程式設計師Phil Zimmermann為了避開政府監視,開發了加密軟體PGP。這個軟體非常好用,迅速流傳開來,成了許多程式設計師的必備工具。但是,它是商業軟體,不能自由使用。所以,自由軟體基金會決定,開發一個PGP的替代品,取名為GnuPG。這就是GPG的由來。
上面的文字出自阮一峰老師的部落格連結: http://www.ruanyifeng.com/blog/2013/07/gpg.html
5. 設定stable儲存庫:
sudo add-apt-repository "deb [arch=amd64] $(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:
For more examples and ideas, visit:
要獲取更多Jerry的原創技術文章,請關注公眾號"汪子熙"或者掃描下面二維碼:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2214561/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【git】Ubuntu作業系統上安裝Git LFSGitUbuntu作業系統
- Ubuntu系統安裝Docker詳細教程UbuntuDocker
- 【docker專欄2】CentOS作業系統安裝DockerCEDockerCentOS作業系統
- 在機器裡安裝FreeBSD,LINUX和WindowsXP作業系統(轉)LinuxWindows作業系統
- ubuntu16.04系統下安裝dockerUbuntuDocker
- 在linux作業系統下安裝vmware toolsLinux作業系統
- 在Ubuntu中安裝Docker和docker的使用UbuntuDocker
- 【Docker快速入門】在Ubuntu下安裝DockerDockerUbuntu
- ubuntu系統nvidia-docker安裝指導UbuntuDocker
- Ubuntu 20.04系統編譯安裝Docker教程。Ubuntu編譯Docker
- Ubuntu 18.04系統編譯安裝Docker教程。Ubuntu編譯Docker
- RedHat 7.6作業系統安裝Redhat作業系統
- 在64位作業系統上安裝ArcGISServer9.3.1作業系統Server
- Ubuntu Docker 安裝UbuntuDocker
- ubuntu 安裝 dockerUbuntuDocker
- ubuntu安裝dockerUbuntuDocker
- 在銀河麒麟高階伺服器作業系統V10上安裝docker伺服器作業系統Docker
- Centos7.9、Ubuntu作業系統圖文安裝CentOSUbuntu作業系統
- 在ubuntu上安裝docker, 使用國內的安裝源UbuntuDocker
- Windows 11 作業系統安裝方法Windows作業系統
- mysql++在64位作業系統上的安裝指南MySql作業系統
- 在一個硬碟上安裝五個作業系統(轉)硬碟作業系統
- oam系統安裝,windows作業系統註冊列表影響系統安裝Windows作業系統
- Ubuntu系統字型安裝Ubuntu
- 最新版 Harbor 在ubuntu系統上安裝Ubuntu
- 在Ubuntu系統安裝Anaconda及PythonUbuntuPython
- 視訊課程:小白學習 Linux-Ubuntu 作業系統(含 docker 安裝配置搭建 lamp 環境)LinuxUbuntu作業系統DockerLAMP
- Ubuntu中安裝DockerUbuntuDocker
- 作業-安裝虛擬機器以及CentOS作業系統虛擬機CentOS作業系統
- CentOS系統安裝dockerCentOSDocker
- 實戰-使用 Cobbler 安裝作業系統作業系統
- Powershell 命令列安裝 Windows 作業系統命令列Windows作業系統
- 多種方式批量安裝作業系統作業系統
- VMWare安裝蘋果作業系統OS X蘋果作業系統
- Solaris8作業系統安裝(轉)作業系統
- 硬碟中安裝Linux作業系統硬碟Linux作業系統
- 安裝Ubuntu windows雙系統UbuntuWindows
- Ubuntu 安裝 docker[laradock]UbuntuDocker