CentOS 7.6 Docker服務的安裝與配置

在 CentOS 上安裝 Docker

注意:切勿在沒有配置 Docker YUM 源的狀況下直接使用 yum 命令安裝 Docker。linux

官方文檔:https://docs.docker.com/engine/install/centos/git

1 - 準備工做

1.1 - 系統要求

Docker CE 支持 64 位版本 CentOS 7,而且要求內核版本不低於 3.10。 CentOS 7 知足最低內核的要求,但因爲內核版本比較低,部分功能(如 overlay2 存儲層驅動)沒法使用,而且部分功能可能不太穩定。github

1.2 - 卸載舊版本

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

$ sudo yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-selinux \
                  docker-engine-selinux \
                  docker-engine

2 - 使用 yum 安裝

2.1 - 安裝依賴包

$ sudo yum install -y yum-utils \
           device-mapper-persistent-data \
           lvm2

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

2.2. = 添加 yum 軟件源

$ sudo yum-config-manager \
    --add-repo \
    https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo

$ sudo sed -i 's/download.docker.com/mirrors.ustc.edu.cn\/docker-ce/g' /etc/yum.repos.d/docker-ce.repo

# 官方源
# $ sudo yum-config-manager \
#     --add-repo \
#     https://download.docker.com/linux/centos/docker-ce.repo

2.3 - 如無須要則忽略

若是須要測試版本的 Docker CE 請使用如下命令:ubuntu

$ sudo yum-config-manager --enable docker-ce-test

若是須要每日構建版本的 Docker CE 請使用如下命令:vim

$ sudo yum-config-manager --enable docker-ce-nightly

2.4 - 安裝 Docker CE

更新 yum 軟件源緩存,並安裝 docker-ce。centos

$ sudo yum makecache fast
$ sudo yum install docker-ce

3 - 啓動 Docker CE

$ sudo systemctl enable docker
$ sudo systemctl start docker

4 - 創建 docker 用戶組

默認狀況下,docker 命令會使用 Unix socket 與 Docker 引擎通信。而只有 root 用戶和 docker 組的用戶才能夠訪問 Docker 引擎的 Unix socket。出於安全考慮,通常 Linux 系統上不會直接使用 root 用戶。所以,更好地作法是將須要使用 docker 的用戶加入 docker 用戶組。緩存

4.1 - 創建 docker 組

$ sudo groupadd docker

4.2 - 將當前用戶加入 docker 組

$ sudo usermod -aG docker $USER

退出當前終端並從新登陸,進行以下測試。安全

5 - 測試 Docker 是否安裝正確

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete 
Digest: sha256:49a1c8800c94df04e9658809b006fd8a686cab8028d33cfba2cc049724254202
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/

若輸出以上信息,則說明安裝成功。

6 - 鏡像加速

若是在使用過程當中發現拉取 Docker 鏡像十分緩慢,能夠配置 Docker 國內鏡像加速。

6.1 - 鏡像加速器

對於使用 systemd 的系統,請在 /etc/docker/daemon.json 中寫入以下內容(若是文件不存在請新建該文件)

$ vim /etc/docker/daemon.json
{
  "registry-mirrors": [
    "https://hub-mirror.c.163.com",
    "https://mirror.baidubce.com"
  ]
}

注意:必定要保證該文件符合 json 規範,不然 Docker 將不能啓動。

以後從新啓動服務。

$ sudo systemctl daemon-reload
$ sudo systemctl restart docker

6.2 - 檢查加速器是否生效

執行 $ docker info,若是從結果中看到了以下內容,說明配置成功。

$ docker info
...
...
Registry Mirrors:
 https://hub-mirror.c.163.com/
 https://mirror.baidubce.com/
...

7 - 安裝過程當中遇到的問題

若是在 CentOS 使用 Docker CE 看到下面的這些警告信息:

WARNING: bridge-nf-call-iptables is disabled
WARNING: bridge-nf-call-ip6tables is disabled

請添加內核配置參數以啓用這些功能。

$ sudo tee -a /etc/sysctl.conf <<-EOF
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
EOF

而後從新加載 sysctl.conf 便可

$ sudo sysctl -p

參考 Docker 官方 CentOS 安裝文檔:https://docs.docker.com/engine/install/centos/

8 - 使用鏡像

列出鏡像
$ docker image ls

鏡像體積
$ docker system df

虛懸鏡像(既沒有倉庫名,也沒有標籤,均爲 <none>)
$ docker image ls -f dangling=true
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
<none>              <none>              00285df0df87        5 days ago          342 MB
通常來講,虛懸鏡像已經失去了存在的價值,是能夠隨意刪除的,能夠用下面的命令刪除。
$ docker image prune

中間層鏡像
$ docker image ls -a

列出部分鏡像
$ docker image ls ubuntu

以特定格式顯示
列出鏡像ID
$ docker image ls -q
列出只包含鏡像ID和倉庫名
$ docker image ls --format "{{.ID}}: {{.Repository}}"
列出含標題、並只包含鏡像ID和倉庫名
$ docker image ls --format "table {{.ID}}\t{{.Repository}}"

9 - Dockerfile

詳情 Dockerfile 見個人 GitHub : https://github.com/Jerome-LJ/DockerFiles

相關文章
相關標籤/搜索