您好,登錄后才能下訂單哦!
小編給大家分享一下Linux系統中如何安裝Docker容器,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
Docker容器作為一個全新的概念雖然廣受關注,但是對于如何使用Docker,將容器技術真正落地用起來,目前估計很多人還沒有非常清晰的思路。
服務器的系統是CentOS7.4的 [root@VM_82_178_centos ~]# cat /etc/RedHat-releaseCentOS Linux release 7.4.1708 (Core)#安裝依賴包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#安裝Docker CEyum install docker-ce -y#啟動systemctl start docker#開機啟動systemctl enable docker#查看Docker信息docker info
apt-get update 安裝證書: apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 添加docker源的key: sudo apt-key fingerprint 0EBFCD88 pub 4096R/0EBFCD88 2017-02-22 Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb) sub 4096R/F273FCD8 2017-02-22 添加docker軟件包源: sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"跟新apt包索引: sudo apt-get update 安裝docker ce apt-get install docker-ce
Docker Hub 提供眾多鏡像,你可以從中自由下載數十萬計的免費應用鏡像, 這些鏡像作為 docker 生態圈的基石,是我們使用和學習 docker 不可或缺的資源。為了解決國內用戶使用 Docker Hub 時遇到的穩定性及速度問題 DaoCloud 推出永久免費的新一代加速器服務。 Linux:
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://bc437cce.m.daocloud.io [root@localhost ~]# curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://bc437cce.m.daocloud.iodocker version >= 1.12 {"registry-mirrors": ["http://bc437cce.m.daocloud.io"]} Success. You need to restart docker to take effect: sudo systemctl restart docker [root@localhost ~]#[root@localhost ~]# systemctl restart docker[root@localhost ~]# systemctl stop docker[root@localhost ~]# ps -ef|grep dockerroot 15185 3300 0 01:39 pts/1 00:00:00 grep --color=auto docker [root@localhost ~]# systemctl start docker[root@localhost ~]# ps -ef|grep dockerroot 15191 1 2 01:39 ? 00:00:00 /usr/bin/dockerd root 15198 15191 0 01:39 ? 00:00:00 docker-containerd --config /var/run/docker/containerd/containerd.toml root 15325 3300 0 01:39 pts/1 00:00:00 grep --color=auto docker [root@localhost ~]#
以上是“Linux系統中如何安裝Docker容器”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。