centos 7使用yum安裝docker容器

2022-05-05 15:51:09 字數 1507 閱讀 6675

使用yum命令即可安裝

yum install docker

安裝完成後,使用下面的命令來啟動 docker 服務,並將其設定為開機啟動:

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

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

[root@localhost ~]# docker pull centos

pulling repository centos

192178b11d36:download complete

70441cac1ed5:download complete

ae0c2d0bdc10:download complete

511136ea3c5a:download complete

5b12ef8fd570:download complete

確認 centos 映象已經被獲取:

[root@localhost ~]# docker images centos

repository tag image id created virtual size

centos centos5 192178b11d362 weeks ago 466.9 mb

centos centos6 70441cac1ed52 weeks ago 215.8 mb

centos centos7 ae0c2d0bdc10 2 weeks ago 224 mb

centos latest ae0c2d0bdc10 2 weeks ago 224 mb

執行乙個 docker 容器:

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

[root@dbf66395436d /]#

我們可以看到,centos 容器已經被啟動,並且我們得到了 bash 提示符。在 docker 命令中我們使用了 「-i 捕獲標準輸入輸出」和 「-t 分配乙個終端或控制台」選項。若要斷開與容器的連線,輸入 exit。

[root@cd05639b3f5c /]# cat /etc/redhat–release

centoslinux release 7.0.1406(core)

[root@cd05639b3f5c /]#exit

exit

[root@localhost ~]#

我們還可以搜尋基於 fedora 和 ubuntu 作業系統的容器。

[root@localhost ~]# docker search ubuntu

[root@localhost ~]# docker search fedora

顯示當前正在執行容器的列表

docker ps

centos7使用yum安裝mysql

wget 2.安裝mysql community release el7 5.noarch.rpm包 sudo rpm ivh mysql community release el7 5.noarch.rpm 安裝這個包後,會獲得兩個mysql的yum repo源 etc yum.repos.d m...

CentOS 7使用yum安裝Docker

安裝依賴 配置阿里雲源 備份cp etc yum.repos.d centos base.repo wget o etc yum.repos.d centos base.repo 生效測試 yum clean all yum makecache 配置epel源 yum install y epel ...

CentOS 7,使用yum安裝Nginx

centos 7,使用yum安裝nginx 執行以下命令 rpm ivh安裝該rpm後,我們就能在 etc yum.repos.d 目錄中看到乙個名為nginx.repo 的檔案。安裝完nginx源後,就可以正式安裝nginx了。yum install y nginx輸入命令 whereis ngi...