真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

CentOS7怎么部署19版的docker

這篇文章主要講解了“CentOS7怎么部署19版的docker”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“CentOS7怎么部署19版的docker”吧!

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比新邵網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式新邵網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋新邵地區(qū)。費用合理售后完善,十載實體公司更值得信賴。

1、安裝依賴包

[root@localhost ~]# yum install -y yum-utils device-mapper-persistent-data lvm2

2、設置阿里云鏡像源

[root@localhost ~]# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

3、安裝docker-ce

[root@localhost ~]# yum install -y docker-ce

4、關閉防火墻與增強型安全功能

[root@localhost ~]# systemctl stop firewalld.service
[root@localhost ~]# setenforce 0
[root@localhost ~]#

5、開啟服務,并設為開機自啟

[root@localhost ~]# systemctl start docker.service
[root@localhost ~]# systemctl enable docker.service
created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
[root@localhost ~]#

6、設置阿里云鏡像加速

(1)進入阿里云首頁,選擇登陸,沒有賬號的可以注冊一個

(2)登陸成功后選擇控制臺

(3)選擇產(chǎn)品與服務,然后選擇容器鏡像服務

(4)選擇最下面的鏡像加速器,這時候就可以根據(jù)你的系統(tǒng)提供相應的加速器地址了,每個人都有自己的加速器地址

(5)配置鏡像加速

[root@localhost ~]# cd /etc/docker/  ##如果沒有該目錄,需手動創(chuàng)建
[root@localhost docker]# ls
key.json
[root@localhost docker]# tee /etc/docker/daemon.json <<-'eof'  ##配置鏡像加速
> {
>  "registry-mirrors": ["https://******.******.aliyuncs.com"]
> }
> eof
{
 "registry-mirrors": ["https://******.*******.aliyuncs.com"]
}
[root@localhost docker]# ls
daemon.json key.json
[root@localhost docker]# systemctl daemon-reload  ##重載守護進程
[root@localhost docker]# systemctl restart docker  ##重啟docker
[root@localhost docker]#

7、開啟系統(tǒng)的數(shù)據(jù)包轉發(fā)功能

[root@localhost docker]# echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
[root@localhost docker]# sysctl -p  ##加載配置
net.ipv4.ip_forward = 1
[root@localhost docker]#

感謝各位的閱讀,以上就是“CentOS7怎么部署19版的docker”的內容了,經(jīng)過本文的學習后,相信大家對CentOS7怎么部署19版的docker這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關知識點的文章,歡迎關注!


本文名稱:CentOS7怎么部署19版的docker
標題鏈接:http://weahome.cn/article/jsooed.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部