CentOS上安装 Docker-CE以及Docker 加速器配置
生活随笔
收集整理的這篇文章主要介紹了
CentOS上安装 Docker-CE以及Docker 加速器配置
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
?
在CentOS 7.0上安裝 Docker-CE
官方源安裝教程?https://docs.docker.com/install/linux/docker-ce/centos/#install-using-the-repository
阿里源安裝教程?https://help.aliyun.com/document_detail/60742.html
?
在這里我選用阿里源安裝
# step 1: 安裝必要的一些系統(tǒng)工具 sudo yum install -y yum-utils device-mapper-persistent-data lvm2# Step 2: 添加軟件源信息 sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo# Step 3: 更新并安裝Docker-CE sudo yum makecache fast sudo yum -y install docker-ce# Step 4: 開啟Docker服務(wù) sudo service docker start安裝完成后輸入docker version查看docker是否安裝成功
?
?
?
Docker加速器配置
?為什么使用加速器:
配置Docker加速器,將會提升在國內(nèi)獲取Docker官方鏡像的速度,否則后面下載鏡像的過程會很慢,甚至有可能無法下載鏡像
?
?
阿里云官方鏡像加速
https://help.aliyun.com/document_detail/60750.html?spm=a2c4g.11186623.6.545.OY7haW
使用配置文件/etc/docker/daemon.json配置鏡像加速器
系統(tǒng)沒有時(shí)新建該文件
sudo mkdir /etc/dockersudo vi /etc/docker/daemon.json?
在daemon.json中添加加速地址
{"registry-mirrors": ["https://xisih51q.mirror.aliyuncs.com"] }?
重啟Docker Daemon就可以了。
sudo systemctl daemon-reload sudo systemctl restart docker
?
轉(zhuǎn)載于:https://www.cnblogs.com/Chan94/p/10661648.html
總結(jié)
以上是生活随笔為你收集整理的CentOS上安装 Docker-CE以及Docker 加速器配置的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 金蝶/K3Wise 月末结账时候提示:违
- 下一篇: springmvc excel下载到本地