您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Docker快速安裝的方法是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Docker快速安裝的方法是什么”吧!
Docker 是一個開源的應(yīng)用容器引擎。權(quán)威解釋可參考 Docker 官方文檔 或者 Docker 中國官方文檔 的解釋。
安裝必要系統(tǒng)工具
sudo apt-get update sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
安裝 GPG 證書
curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
寫入軟件源
sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
更新并安裝 Docker-CE
sudo apt-get update sudo apt-get install -y docker-ce
安裝必要系統(tǒng)工具
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
添加軟件源信息
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
更新并安裝 Docker-CE
sudo yum makecache fast sudo yum install -y docker-ce
開啟 Docker 服務(wù)
sudo systemctl enable docker sudo systemctl start docker
docker version
當(dāng)你下載安裝的 Docker Version 不低于 1.10 時,建議直接通過 daemon config 進行配置。
修改文件 /etc/docker/daemon.json
進行配置(沒有時新建該文件)。
可參考官方文檔 Docker 中國官方鏡像加速,Configure the Docker daemon。
或者阿里云博客文檔 Docker 鏡像加速器。
中國官方鏡像加速:
{ "registry-mirrors": ["https://registry.docker-cn.com"] }
阿里云加速:
{ "registry-mirrors": ["https://0ardnxoa.mirror.aliyuncs.com"] }
Ubuntu 14.04
sudo /etc/init.d/docker restart
CentOS 7
sudo systemctl restart docker
通過 docker info
命令進行查看
docker info
docker run -it ubuntu
通過阿里云的開發(fā)者平臺進行搜索。[推薦]
通過命令行搜索
docker search ubuntu
通過 Docker 官網(wǎng)進行搜索。
docker pull centos
docker run centos /bin/echo "hello world"
docker logs <container>
docker ps docker stop <amazing_cori>
docker rm $(docker ps -qa)
docker inspect NAME|ID
到此,相信大家對“Docker快速安裝的方法是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。