摘要:的版本的版本分為社區(qū)版和企業(yè)版,想了解更多可以去官網(wǎng)查看其中分為和版本為季度發(fā)布版本,例如發(fā)布周期為一個季度為月度發(fā)布版本,例如發(fā)布周期為一個月安裝前先在官網(wǎng)查看支持的平臺,不同系統(tǒng)下的安裝方法也都可以在官網(wǎng)找到,這里以在下安裝為例下
Docker的版本
Docker的版本分為Docker-ce社區(qū)版和Docker-ee企業(yè)版,想了解更多可以去官網(wǎng)查看
其中Docker-ce分為stable和edge版本
stable為季度發(fā)布版本,例如v17.03 v17.06發(fā)布周期為一個季度
edge為月度發(fā)布版本,例如v17.01 v17.02發(fā)布周期為一個月
安裝前先在官網(wǎng)查看Docker支持的平臺,不同系統(tǒng)下的安裝方法也都可以在官網(wǎng)找到,這里以在CentOS7下安裝為例
CentOS7下安裝Docker-ceOS requirements
To install Docker CE, you need a maintained version of CentOS 7. Archived versions aren’t supported or tested.
The centos-extras repository must be enabled. This repository is enabled by default, but if you have disabled it, you need to re-enable it.
The overlay2 storage driver is recommended.
查看系統(tǒng)需求提示需要一個處于維護(hù)版本的CentOS7即可
Uninstall old versions
Older versions of Docker were called docker or docker-engine. If these are installed, uninstall them, along with associated dependencies.
如果之前安裝過Docker,根據(jù)提示先清除老版本的Docker
[root@centos7 ~]# yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine倉庫方式安裝
推薦的方式,便于安裝和升級
需要安裝yum-config-manager來更方便的管理yum倉庫,yum-config-manager在yum-utils包中,所以先安裝yum-utils
[root@centos7 ~]# yum install -y yum-utils device-mapper-persistent-data lvm2
安裝完后添加Docker-ce的官方源
[root@centos7 ~]# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
開啟edge版本后,在選擇指定版本安裝時就能看到edge版本了
[root@centos7 ~]# yum-config-manager --enable docker-ce-edge
查看倉庫列表檢查是否添加成功
[root@centos7 ~]# yum repolist安裝最新版本
[root@centos7 ~]# yum install docker-ce安裝指定版本
先列出Docker倉庫中可用的版本再選擇安裝,@代表已安裝的軟件包,返回的列表取決于啟用了哪些倉庫
其中EL是RedHatEnterpriseLinux的簡寫,其中el5/6/7的軟件包用于Red Hat 5/6/7.x, CentOS 5/6/7.x, and CloudLinux 5/6/7.下的安裝
[root@centos7 ~]# yum list docker-ce --showduplicates | sort -r 已加載插件:fastestmirror 可安裝的軟件包 Loading mirror speeds from cached hostfile docker-ce.x86_64 18.06.0.ce-3.el7 docker-ce-stable docker-ce.x86_64 18.03.1.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 18.03.0.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.12.1.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.12.0.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.09.1.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.09.0.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.06.2.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.06.1.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.06.0.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.03.2.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.03.1.ce-1.el7.centos docker-ce-stable docker-ce.x86_64 17.03.0.ce-1.el7.centos docker-ce-stable
執(zhí)行命令yum install docker-ce-
[root@centos7 ~]# yum install docker-ce-18.03.1.ce-1.el7.centos啟動Docker服務(wù)
[root@centos7 ~]# systemctl start docker驗(yàn)證Docker是否安裝成功
[root@centos7 ~]# docker run hello-world Unable to find image "hello-world:latest" locally latest: Pulling from library/hello-world 9db2ca6ccae0: Pull complete Digest: sha256:4b8ff392a12ed9ea17784bd3c9a8b1fa3299cac44aca35a85c90c5e3c7afacdc Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/engine/userguide/包方式安裝
包方式安裝需要下載.rpm文件進(jìn)行安裝,但當(dāng)需要更新docker的時候也必須下載安裝包來安裝,下載地址
安裝Docker的rpm包[root@centos7 ~]# yum install docker-ce-18.03.1.ce-1.el7.centos.x86_64.rpm啟動Docker服務(wù)
[root@centos7 ~]# systemctl start docker驗(yàn)證Docker是否安裝成功
[root@centos7 ~]# docker run hello-world卸載Docker
[root@centos7 ~]# yum remove docker-ce [root@centos7 ~]# rm -rf /var/lib/docker
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/27399.html
摘要:資源官網(wǎng)資源資源版本的安裝參考這個資源安裝參考這個資源阿里云開發(fā)者平臺資源阿里云鏡像加速器資源中文版資源參考學(xué)習(xí)安裝時間第步卸載舊版本的手工刪除里面有圖象容器卷和網(wǎng)絡(luò)現(xiàn)在的名字叫第步安裝第步安裝官方的 資源01: Docker官網(wǎng)資源02: Docker Store資源03: Ubuntu版本的Docker安裝(參考這個)資源04: Docker-compose安裝(參考這個) 資源...
摘要:前言默認(rèn)的為功能有限現(xiàn)在把它該歸它提供了豐富的查詢功能拉取使用啟動利用上節(jié)教程使所有添加至改用安裝請把環(huán)境變量都改為的實(shí)例化創(chuàng)建一些并交易 前言 默認(rèn)的state DB為goleveldb,功能有限,現(xiàn)在把它該歸CouchDB.它提供了豐富的查詢功能 拉取coundb image docker pull hyperledger/fabric-couchdb:x86_64-1.0.5 d...
摘要:容器通過獲取一個與同網(wǎng)段的地址,并默認(rèn)連接到網(wǎng)橋,并將的地址作為網(wǎng)關(guān)實(shí)現(xiàn)容器與宿主機(jī)的網(wǎng)絡(luò)互通,另外,同一個宿主機(jī)下同樣使用模式的容器可以直接通訊。 【技術(shù)沙龍002期】數(shù)據(jù)中臺:宜信敏捷數(shù)據(jù)中臺建設(shè)實(shí)踐|宜信技術(shù)沙龍 將于5月23日晚8點(diǎn)線上直播,點(diǎn)擊報名 一、關(guān)于Docker Docker 是一個開源的應(yīng)用容器引擎,基于 Go 語言 并遵從Apache2.0協(xié)議開源。 Docker...
閱讀 2158·2023-04-25 20:45
閱讀 1068·2021-09-22 15:13
閱讀 3642·2021-09-04 16:48
閱讀 2580·2019-08-30 15:53
閱讀 928·2019-08-30 15:44
閱讀 936·2019-08-30 15:43
閱讀 1002·2019-08-29 16:33
閱讀 3432·2019-08-29 13:08