溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Docker入門與應(yīng)用實(shí)戰(zhàn)之Linux安裝Docker

發(fā)布時間:2020-07-06 02:21:35 來源:網(wǎng)絡(luò) 閱讀:196 作者:dengaosky 欄目:云計算

1、Docker版本

社區(qū)版(Community?Edition,?CE)
企業(yè)版(Enterprise?Edition,?EE)


2、支持平臺

Linux(CentOS,Debian,Fedora,Oracle?Linux,RHEL,SUSE和Ubuntu)
Mac
Windows


3、CentOS7.x安裝Docker

#?系統(tǒng)配置
sed?-i?'s/SELINUX=enforcing/SELINUX=disabled/g'?/etc/selinux/config;setenforce?0
systemctl?stop?firewalld;systemctl?disable?firewalld

#?安裝依賴包
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
國內(nèi)源????
yum-config-manager?\
????--add-repo?\
????https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
????
#?安裝Docker?CE?
yum?install?-y?docker-ce

#?啟動Docker服務(wù)并設(shè)置開機(jī)啟動?
systemctl?start?docker?
systemctl?enable?docker

官方文檔:https://docs.docker.com

4、配置加速器

https://hub.docker.com??官方鏡像源
https://www.daocloud.io/mirror??國內(nèi)鏡像源

Linux示例:
curl?-sSL?https://get.daocloud.io/daotools/set_mirror.sh?|?sh?-s?http://f1361db2.m.daocloud.io
該腳本可以將?--registry-mirror?加入到你的?Docker?配置文件?/etc/docker/daemon.json?中。
適用于?Ubuntu14.04、Debian、CentOS6?、CentOS7、Fedora、Arch?Linux、openSUSE?Leap?42.1,其他版本可能有細(xì)微不同。更多詳情請訪問文檔。


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI