ubuntu18.04安裝docker,最全教程

Ubuntu 安裝 Docker CE

>警告:切勿在沒有配置 Docker APT 源的情況下直接使用 apt 命令安裝 Docker.

### 準備工作

#### 系統要求

Docker CE 支持以下版本的 [Ubuntu](https://www.ubuntu.com/server) 操作系統:

* Bionic 18.04 (LTS)
* Xenial 16.04 (LTS)

Docker CE 可以安裝在 64 位的 x86 平臺或 ARM 平臺上。Ubuntu 發行版中,LTS(Long-Term-Support)長期支持版本,會獲得 5 年的升級維護支持,這樣的版本會更穩定,因此在生產環境中推薦使用 LTS 版本。


#### 卸載舊版本

舊版本的 Docker 稱爲 `docker` 或者 `docker-engine`,使用以下命令卸載舊版本:

```bash

$ sudo apt-get remove docker \
               docker-engine \
               docker.io

```

提醒(1)上面的bash是告訴你這些語句輸入在控制檯中

         (2)直接從sudo到結尾的o複製全部,然後在控制檯中右鍵,粘帖


### 使用 APT 安裝

由於 `apt` 源使用 HTTPS 以確保軟件下載過程中不被篡改。因此,我們首先需要添加使用 HTTPS 傳輸的軟件包以及 CA 證書。

```bash

$ sudo apt-get update

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

```

提醒: 操作同上所示,直接複製,粘帖即可

鑑於國內網絡問題,強烈建議使用國內源,官方源請在註釋中查看。

爲了確認所下載軟件包的合法性,需要添加軟件源的 `GPG` 密鑰。

```bash

$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -


然後,我們需要向 `source.list` 中添加 Docker 軟件源

```bash

$ sudo add-apt-repository \
    "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
    $(lsb_release -cs) \
    stable"

提醒:操作直接複製,粘粘

>以上命令會添加穩定版本的 Docker CE APT 鏡像源,如果需要測試或每日構建版本的 Docker CE 請將 stable 改爲 test 或者 nightly。


#### 安裝 Docker CE

更新 apt 軟件包緩存,並安裝 `docker-ce`:

```bash

$ sudo apt-get update

$ sudo apt-get install docker-ce

```


### 使用腳本自動安裝

在測試或開發環境中 Docker 官方爲了簡化安裝流程,提供了一套便捷的安裝腳本,Ubuntu 系統上可以使用這套腳本安裝:

```bash

$ curl -fsSL get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh --mirror Aliyun

```

執行這個命令後,腳本就會自動的將一切準備工作做好,並且把 Docker CE 的 Edge 版本安裝在系統中。


### 啓動 Docker CE

```bash

$ sudo systemctl enable docker
$ sudo systemctl start docker

```


### 建立 docker 用戶組

默認情況下,`docker` 命令會使用 [Unix socket](https://en.wikipedia.org/wiki/Unix_domain_socket) 與 Docker 引擎通訊。而只有 `root` 用戶和 `docker` 組的用戶纔可以訪問 Docker 引擎的 Unix socket。出於安全考慮,一般 Linux 系統上不會直接使用 `root` 用戶。因此,更好地做法是將需要使用 `docker` 的用戶加入 `docker` 用戶組。

建立 `docker` 組:

```bash

$ sudo groupadd docker

```

將當前用戶加入 `docker` 組:

```bash

$ sudo usermod -aG docker $USER

```

退出當前終端並重新登錄,進行如下測試。


### 測試 Docker 是否安裝正確

```bash
$ sudo docker run hello-world                           

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
d1725b59e92d: Pull complete
Digest: sha256:0add3ace90ecb4adbf7777e9aacf18357296e799f81cabc9fde470971e499788
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/
```

若能正常輸出以上信息,則說明安裝成功。恭喜你哦

親測可用。

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章