在centos和redhat上安裝docker

在centos和redhat上安裝docker

來自專欄 猿論

前置條件

  • 64-bit 系統
  • kernel 3.10+

    1.檢查內核版本,返回的值大於3.10即可。

$ uname -r

2.使用 sudo 或 root 許可權的用戶登入終端。

3.卸載舊版本(如果安裝過舊版本的話)

$ yum remove docker docker-common docker-selinux docker-engine

4.安裝需要的軟體包

#yum-util提供yum-config-manager功能#另外兩個是devicemapper驅動依賴的$ yum install -y yum-utils device-mapper-persistent-data lvm2

5.設置yum源

$ yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

6.安裝docker

6.1. 安裝最新版本

$ yum install -y docker-ce

6.2. 安裝指定版本

#查詢版本列表$ yum list docker-ce --showduplicates | sort -r已載入插件:fastestmirror, langpacks已安裝的軟體包可安裝的軟體包 * updates: mirrors.163.comLoading mirror speeds from cached hostfile * extras: mirrors.163.comdocker-ce.x86_64 17.09.1.ce-1.el7.centos docker-ce-stabledocker-ce.x86_64 17.09.0.ce-1.el7.centos docker-ce-stable...#指定版本安裝(這裡的例子是安裝上面列表中的第二個)$ yum install -y docker-ce-17.09.0.ce

7.啟動docker

$ systemctl start docker.service

7.驗證安裝是否成功(有client和service兩部分表示docker安裝啟動都成功了)

$ docker versionClient: Version: 17.09.0-ce API version: 1.32 Go version: go1.8.3 Git commit: afdb6d4 Built: Tue Sep 26 22:41:23 2017 OS/Arch: linux/amd64Server: Version: 17.09.0-ce API version: 1.32 (minimum version 1.12) Go version: go1.8.3 Git commit: afdb6d4 Built: Tue Sep 26 22:42:49 2017 OS/Arch: linux/amd64 Experimental: false

作者: 劉果國

鏈接:imooc.com/article/16448

來源:慕課網


推薦閱讀:

Swoole入門到實戰課程學習畢業總結!singwa老師送10本簽名書

Linux 基礎 - 常用命令篇

在Docker的助攻下,2018年將是Kubernetes之年

猿宵節到了,把博客裝入docker與我團圓記

Linux 新手要了解的十個知識點


推薦閱讀:

我們為什麼愛用 Linux?
如何忍受object-c如此啰嗦的語法?
Linux實戰(一)
關於固態硬碟的定址原理和定址速度的一個疑問?
通過擺弄python scapy模塊 了解網路模型--Get your hands dirty!

TAG:Linux | Docker | 碼農新人 |