Centos7安裝docker社區(CE)版
官網指導:https://docs.docker.com/engine/installation/linux/docker-ce/centos/#install-docker-ce-1linux
sudo yum-config-manager \ --add-repo \ https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# 安裝依賴包 yum install -y yum-utils device-mapper-persistent-data lvm2 # 添加Docker軟件包源 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo #關閉測試版本list(只顯示穩定版) sudo yum-config-manager --enable docker-ce-edge sudo yum-config-manager --enable docker-ce-test # 更新yum包索引 yum makecache fast #NO.1 直接安裝Docker CE (will always install the highest possible version,可能不符合你的需求) yum install docker-ce #NO.2 指定版本安裝 yum list docker-ce --showduplicates|sort -r yum install docker-ce-17.09.0.ce -y
# 啓動 systemctl start docker # 測試 docker run hello-world docker version # 卸載 yum remove docker-ce rm -rf /var/lib/docker
#官網下載rpm包 https://download.docker.com/linux/centos/7/x86_64/stable/Packages
#上傳服務器,安裝 yum install /path/安裝包.rpm # 啓動 systemctl start docker # 測試 docker run hello-world docker version #升級(下載新版本包) yum upgrade /path/新版本.rpm
用於開發環境快速安裝,不提供版本選擇,老是安裝最新的edg版和test版 腳本須要root權限執行 不要在已經用其餘方式安裝docker 的服務器上使用腳本安裝 get.docker.com 老是安裝Docker CE 的edge最新版本;(edg版,每個月更新的版本,新特性,bug多) # curl -fsSL get.docker.com -o get-docker.sh # sudo sh get-docker.sh test.docker.com 老是安裝Docker CE 的test最新版本 # curl -fsSL test.docker.com -o test-docker.sh # sudo sh test-docker.sh