主頁 > 知識(shí)庫 > linux中docker的安裝教程

linux中docker的安裝教程

熱門標(biāo)簽:比較穩(wěn)定的外呼系統(tǒng) 江蘇自動(dòng)外呼系統(tǒng)一般多少錢 山東電信外呼系統(tǒng)靠譜嗎 云南云電銷機(jī)器人招商 ai電話機(jī)器人營銷 信貸電銷機(jī)器人系統(tǒng) 400 電話 申請(qǐng)費(fèi)用 鸚鵡螺號(hào)航海地圖標(biāo)注時(shí)間 長沙回?fù)芡夂粝到y(tǒng)

Docker 軟件包已經(jīng)包括在默認(rèn)的 CentOS-Extras 軟件源里。因此想要安裝 docker,只需要運(yùn)行下面的 yum 命令:

[root@localhost ~]# yum install docker

啟動(dòng) Docker 服務(wù)
安裝完成后,使用下面的命令來啟動(dòng) docker 服務(wù),并將其設(shè)置為開機(jī)啟動(dòng):

[root@localhost ~]# service docker start
[root@localhost ~]# chkconfig docker on

(LCTT 譯注:此處采用了舊式的 sysv 語法,如采用CentOS 7中支持的新式 systemd 語法,如下:

[root@localhost ~]# systemctl start docker.service
[root@localhost ~]# systemctl enable docker.service

下載官方的 CentOS 鏡像到本地

[root@localhost ~]# docker pull centos
Pulling repository centos
192178b11d36: Download complete
70441cac1ed5: Download complete
ae0c2d0bdc10: Download complete
511136ea3c5a: Download complete
5b12ef8fd570: Download complete

確認(rèn) CentOS 鏡像已經(jīng)被獲取:

[root@localhost ~]# docker images centos
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
centos centos5 192178b11d36 2 weeks ago 466.9 MB
centos centos6 70441cac1ed5 2 weeks ago 215.8 MB
centos centos7 ae0c2d0bdc10 2 weeks ago 224 MB
centos latest ae0c2d0bdc10 2 weeks ago 224 MB

運(yùn)行一個(gè) Docker 容器:

[root@localhost ~]# docker run -i -t centos /bin/bash
[root@dbf66395436d /]#

我們可以看到,CentOS 容器已經(jīng)被啟動(dòng),并且我們得到了 bash 提示符。在 docker 命令中我們使用了 “-i 捕獲標(biāo)準(zhǔn)輸入輸出”和 “-t 分配一個(gè)終端或控制臺(tái)”選項(xiàng)。若要斷開與容器的連接,輸入 exit。

[root@cd05639b3f5c /]# cat /etc/redhat-release 
CentOS Linux release 7.0.1406 (Core) 
[root@cd05639b3f5c /]# exit
exit
[root@localhost ~]#

我們還可以搜索基于 Fedora 和 Ubuntu 操作系統(tǒng)的容器。

[root@localhost ~]# docker search ubuntu
[root@localhost ~]# docker search fedora

到此這篇關(guān)于linux中docker的安裝的文章就介紹到這了,更多相關(guān)linux docker安裝內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:拉薩 嘉興 齊齊哈爾 烏海 運(yùn)城 亳州 澳門 衡陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux中docker的安裝教程》,本文關(guān)鍵詞  linux,中,docker,的,安裝,教程,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《linux中docker的安裝教程》相關(guān)的同類信息!
  • 本頁收集關(guān)于linux中docker的安裝教程的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章