安裝所需的包
# yum-config-manager --add-repo
# 新增官方yum源,速度非常慢,不推薦,忽略
yum-config-manager --add-repo
新增阿里yum源,速度飛快
yum makecache fast
yum install docker-ce
安裝最新版本的docker ce(社群版)
按兩次y確認
systemctl start docker
啟動docker
systemctl enable docker
設定開機啟動
使用阿里雲映象加速
docker run hello-world
通過執行hello-world映象驗證安裝是否正確
檢視hello-world映象資訊
repository:來自於哪個倉庫
tag:標籤(映象的發行版本)
image id:id(唯一)
created:建立時間
size:大小
docker version
檢視docker版本資訊
有client和server兩部分表示docker安裝啟動都成功了
檢視docker版本
(徹底解除安裝)
CentOS7修改阿里yum源
1 備份原來的 yum 源,備份是個好習慣 下面命令的意思是把 etc yum.repos.d centos base.repo 這個原生的 yum 原始檔複製並改名為 etc yum.repos.d centos base.repo.bak root centos7 dns master sudo...
CentOS7配置阿里yum源
1 開啟centos的yum資料夾 輸入命令cd etc yum.repos.d 輸入命令wget 如果wget命令不生效,說明還沒有安裝wget工具,輸入yum y install wget 回車進行安裝。3 備份系統原來的repo檔案 mv centos base.repo centos bas...
CentOS7使用阿里雲的yum源
替換成阿里雲的yum源速度更快一些,替換很簡單,簡單記錄一下步驟 1 備份原來的yum源 sudo cp etc yum.repos.d centos base.repo etc yum.repos.d centos base.repo.bak 2 安裝wget工具 yum install wget...