阿裡雲 centos7 安裝docker的相關曆程
補充centos7的相關安裝教程(參照阿裡雲centos8的相關安裝教程進行調整)
系統版本: centos7
參考位址:
https://help.aliyun.com/document_detail/187598.html
首先 centos7 預設是沒有 dnf 服務的,是以需要安裝相關軟體支援包
# 先更新python,避免會碰到奇怪的異常
yum update python* -y
# 安裝相關軟體包
yum install epel-release dnf dnf-data dnf-plugins-core libdnf-devel libdnf python2-dnf-plugin-migrate dnf-automatic -y
其次安裝步驟與centos8大部分是一樣的,隻有小部分範圍的文法上有出入
第一步 安裝驅動包
dnf install -y device-mapper-persistent-data lvm2
第二步 添加穩定的Docker軟體源
dnf config-manager --add-repo=https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
第三步 安裝docker-ce 社群版(與原步驟不一樣的地方,少了 --nobest 指令) -- 完成相關安裝
dnf install -y docker-ce
其他指令參考
systemctl start docker #運作Docker守護程序
systemctl enable docker #設定Docker開機自啟動
systemctl stop docker #停止Docker守護程序
systemctl restart docker #重新開機Docker守護程序
systemctl status docker #檢視Docker的運作狀态
ps 附帶docker優化配置相關文章 阿裡雲linux3(centos8)安裝docker和配置優化