您好,登錄后才能下訂單哦!
這篇文章主要講解了“CentOS安裝Docker CE的步驟”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“CentOS安裝Docker CE的步驟”吧!
CentOS 安裝 Docker CE
安裝 Docker CE
系統(tǒng)要求
卸載舊版本
準(zhǔn)備工作
使用 yum 安裝
使用腳本自動(dòng)安裝
啟動(dòng) Docker CE
建立 docker 用戶組
測(cè)試 Docker 是否安裝正確
鏡像加速
添加內(nèi)核參數(shù)
參考文檔
警告:切勿在沒(méi)有配置 Docker YUM 源的情況下直接使用 yum 命令安裝 Docker.
Docker CE 支持 64 位版本 CentOS 7,并且要求內(nèi)核版本不低于 3.10。 CentOS 7 滿足最低內(nèi)核的要求,但由于內(nèi)核版本比較低,部分功能(如 overlay2
存儲(chǔ)層驅(qū)動(dòng))無(wú)法使用,并且部分功能可能不太穩(wěn)定。
舊版本的 Docker 稱為 docker
或者 docker-engine
,使用以下命令卸載舊版本:
$ 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
執(zhí)行以下命令安裝依賴包:
$ sudo yum install -y yum-utils \ device-mapper-persistent-data \ lvm2
鑒于國(guó)內(nèi)網(wǎng)絡(luò)問(wèn)題,強(qiáng)烈建議使用國(guó)內(nèi)源,官方源請(qǐng)?jiān)谧⑨屩胁榭础?/p>
執(zhí)行下面的命令添加 yum
軟件源:
$ sudo yum-config-manager \ --add-repo \ https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo # 官方源 # $ sudo yum-config-manager \ # --add-repo \ # https://download.docker.com/linux/centos/docker-ce.repo
如果需要測(cè)試版本的 Docker CE 請(qǐng)使用以下命令:
$ sudo yum-config-manager --enable docker-ce-test
如果需要每日構(gòu)建版本的 Docker CE 請(qǐng)使用以下命令:
$ sudo yum-config-manager --enable docker-ce-nightly
更新 yum
軟件源緩存,并安裝 docker-ce
。
$ sudo yum makecache fast $ sudo yum install docker-ce
在測(cè)試或開(kāi)發(fā)環(huán)境中 Docker 官方為了簡(jiǎn)化安裝流程,提供了一套便捷的安裝腳本,CentOS 系統(tǒng)上可以使用這套腳本安裝:
$ curl -fsSL get.docker.com -o get-docker.sh $ sudo sh get-docker.sh --mirror Aliyun
執(zhí)行這個(gè)命令后,腳本就會(huì)自動(dòng)的將一切準(zhǔn)備工作做好,并且把 Docker CE 的 Edge 版本安裝在系統(tǒng)中。
$ sudo systemctl enable docker $ sudo systemctl start docker
默認(rèn)情況下,docker
命令會(huì)使用 Unix socket 與 Docker 引擎通訊。而只有 root
用戶和 docker
組的用戶才可以訪問(wèn) Docker 引擎的 Unix socket。出于安全考慮,一般 Linux 系統(tǒng)上不會(huì)直接使用 root
用戶。因此,更好地做法是將需要使用 docker
的用戶加入 docker
用戶組。
建立 docker
組:
$ sudo groupadd docker
將當(dāng)前用戶加入 docker
組:
$ sudo usermod -aG docker $USER
退出當(dāng)前終端并重新登錄,進(jìn)行如下測(cè)試。
$ 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/
若能正常輸出以上信息,則說(shuō)明安裝成功。
如果在使用過(guò)程中發(fā)現(xiàn)拉取 Docker 鏡像十分緩慢,可以配置 Docker 國(guó)內(nèi)鏡像加速。
如果在 CentOS 使用 Docker CE 看到下面的這些警告信息:
WARNING: bridge-nf-call-iptables is disabled WARNING: bridge-nf-call-ip6tables is disabled
請(qǐng)?zhí)砑觾?nèi)核配置參數(shù)以啟用這些功能。
$ 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
感謝各位的閱讀,以上就是“CentOS安裝Docker CE的步驟”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)CentOS安裝Docker CE的步驟這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。