CentOS 7.6 安裝docker

1.查看內(nèi)核

[root@CentOS7 ~]# uname -r

3.10.0-957.21.3.el7.x86_64

[root@CentOS7 ~]#

2. 安裝docker

[root@CentOS7 ~]# curl -sSL https://get.docker.com/ | sh

# Executing docker install script, commit: 6bf300318ebaab958c4adc341a8c7bb9f3a54a1a

+ sh -c 'yum install -y -q yum-utils'

軟件包 yum-utils-1.1.31-50.el7.noarch 已安裝并且是最新版本

+ sh -c 'yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo'

已加載插件:fastestmirror, langpacks

adding repo from: https://download.docker.com/linux/centos/docker-ce.repo

grabbing file https://download.docker.com/linux/centos/docker-ce.repo to /etc/yum.repos.d/docker-ce.repo

repo saved to /etc/yum.repos.d/docker-ce.repo

+ '[' stable '!=' stable ']'

+ sh -c 'yum makecache'

已加載插件:fastestmirror, langpacks

Loading mirror speeds from cached hostfile

* base: mirror.jdcloud.com

* extras: mirror.bit.edu.cn

* updates: mirror.bit.edu.cn

ambari-2.7.3.0? ? ? ? ?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? | 2.9 kB? 00:00:00? ?

base? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | 3.6 kB? 00:00:00? ?

docker-ce-stable? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | 3.5 kB? 00:00:00? ?

extras? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? | 3.4 kB? 00:00:00? ?

updates? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | 3.4 kB? 00:00:00? ?

(1/13): base/7/x86_64/other_db? ? ? ? ?? ? ? ? ? ? ? ? | 2.6 MB? 00:00:00? ?

(2/13): docker-ce-stable/x86_64/filelists_db? ? ?? |? 15 kB? 00:00:00? ?

(3/13): ambari-2.7.3.0/other_db? ? ? ? ? ? ? ? ? ? ? ? ? | 1.4 kB? 00:00:00? ?

(4/13): docker-ce-stable/x86_64/primary_db? ? ? |? 30 kB? 00:00:00? ?

(5/13): extras/7/x86_64/filelists_db? ? ? ? ? ? ? ? ? ?? | 246 kB? 00:00:00? ?

(6/13): docker-ce-stable/x86_64/other_db? ? ? ??? | 112 kB? 00:00:00? ?

(7/13): extras/7/x86_64/prestodelta? ? ? ? ? ? ? ? ? ? |? 65 kB? 00:00:00? ?

(8/13): docker-ce-stable/x86_64/updateinfo? ? ?? |? 55 B? 00:00:00? ?

(9/13): extras/7/x86_64/other_db? ? ? ? ? ? ? ? ? ? ??? | 127 kB? 00:00:00? ?

(10/13): updates/7/x86_64/other_db? ? ? ? ? ? ? ? ?? | 659 kB? 00:00:00? ?

(11/13): ambari-2.7.3.0/filelists_db? ? ? ? ? ? ? ? ? ? ? | 103 kB? 00:00:01? ?

(12/13): updates/7/x86_64/filelists_db? ? ? ? ? ? ? ?? | 4.6 MB? 00:00:00? ?

(13/13): base/7/x86_64/filelists_db? ? ? ? ? ? ? ? ? ??? | 7.1 MB? 00:00:02? ?

元數(shù)據(jù)緩存已建立

+ '[' -n '' ']'

+ sh -c 'yum install -y -q docker-ce'

warning: /var/cache/yum/x86_64/7/docker-ce-stable/packages/docker-ce-18.09.8-3.el7.x86_64.rpm: Header V4 RSA/SHA512 Signature, key ID 621e9f35: NOKEY

docker-ce-18.09.8-3.el7.x86_64.rpm 的公鑰尚未安裝

導(dǎo)入 GPG key 0x621E9F35:

用戶ID? ? : "Docker Release (CE rpm) <docker@docker.com>"

指紋? ? ? : 060a 61c5 1b55 8a7f 742b 77aa c52f eb6b 621e 9f35

來自? ? ? : https://download.docker.com/linux/centos/gpg

If you would like to use Docker as a non-root user, you should now consider

adding your user to the "docker" group with something like:

? sudo usermod -aG docker your-user

Remember that you will have to log out and back in for this to take effect!

WARNING: Adding a user to the "docker" group will grant the ability to run

? ? ? ? containers which can be used to obtain root privileges on the

? ? ? ? docker host.

? ? ? ? Refer to https://docs.docker.com/engine/security/security/#docker-daemon-attack-surface

? ? ? ? for more information.

3.啟動docker

[root@CentOS7 ~]# service docker start

Redirecting to /bin/systemctl start docker.service

4.測試docker

[root@CentOS7 ~]# docker run hello-world

Unable to find image 'hello-world:latest' locally

latest: Pulling from library/hello-world

1b930d010525: Pull complete

Digest: sha256:6540fc08ee6e6b7b63468dc3317e3303aae178cb8a45ed3123180328bcc1d20f

Status: Downloaded newer image for hello-world:latest

Hello from Docker!

This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:

1. The Docker client contacted the Docker daemon.

2. The Docker daemon pulled the "hello-world" image from the Docker Hub.

? ? (amd64)

3. The Docker daemon created a new container from that image which runs the

? ? executable that produces the output you are currently reading.

4. The Docker daemon streamed that output to the Docker client, which sent it

? ? to your terminal.

To try something more ambitious, you can run an Ubuntu container with:

$ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:

https://hub.docker.com/

For more examples and ideas, visit:

https://docs.docker.com/get-started/

[root@CentOS7 ~]# docker info

Containers: 1

Running: 0

Paused: 0

Stopped: 1

Images: 1

Server Version: 18.09.8

Storage Driver: overlay2

Backing Filesystem: xfs

Supports d_type: true

Native Overlay Diff: true

Logging Driver: json-file

Cgroup Driver: cgroupfs

Plugins:

Volume: local

Network: bridge host macvlan null overlay

Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog

Swarm: inactive

Runtimes: runc

Default Runtime: runc

Init Binary: docker-init

containerd version: 894b81a4b802e4eb2a91d1ce216b8817763c29fb

runc version: 425e105d5a03fabd737a126ad93d62a9eeede87f

init version: fec3683

Security Options:

seccomp

? Profile: default

Kernel Version: 3.10.0-957.21.3.el7.x86_64

Operating System: CentOS Linux 7 (Core)

OSType: linux

Architecture: x86_64

CPUs: 2

Total Memory: 2.386GiB

Name: CentOS7

ID: V6H5:7DSN:DFAP:YGCG:K2KC:K5RI:TFD4:TSKZ:LT3C:WWLQ:73WA:2Y4F

Docker Root Dir: /var/lib/docker

Debug Mode (client): false

Debug Mode (server): false

Registry: https://index.docker.io/v1/

Labels:

Experimental: false

Insecure Registries:

127.0.0.0/8

Live Restore Enabled: false

Product License: Community Engine

[root@CentOS7 ~]#

5.設(shè)置開機啟動

[root@CentOS7 ~]# systemctl enable docker

Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.

[root@CentOS7 ~]#

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市衬以,隨后出現(xiàn)的幾起案子缓艳,更是在濱河造成了極大的恐慌,老刑警劉巖看峻,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件阶淘,死亡現(xiàn)場離奇詭異,居然都是意外死亡互妓,警方通過查閱死者的電腦和手機溪窒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來冯勉,“玉大人澈蚌,你說我怎么就攤上這事∽普” “怎么了宛瞄?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長交胚。 經(jīng)常有香客問我坛悉,道長,這世上最難降的妖魔是什么承绸? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任裸影,我火速辦了婚禮,結(jié)果婚禮上军熏,老公的妹妹穿的比我還像新娘轩猩。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布均践。 她就那樣靜靜地躺著晤锹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪彤委。 梳的紋絲不亂的頭發(fā)上鞭铆,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機與錄音焦影,去河邊找鬼车遂。 笑死,一個胖子當著我的面吹牛斯辰,可吹牛的內(nèi)容都是我干的舶担。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼彬呻,長吁一口氣:“原來是場噩夢啊……” “哼衣陶!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起闸氮,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤剪况,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后蒲跨,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體译断,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年财骨,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片藏姐。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡隆箩,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出羔杨,到底是詐尸還是另有隱情捌臊,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布兜材,位于F島的核電站理澎,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏曙寡。R本人自食惡果不足惜糠爬,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望举庶。 院中可真熱鬧执隧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至屋摔,卻和暖如春烁设,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背钓试。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工装黑, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人亚侠。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓曹体,卻偏偏與公主長得像,于是被迫代替她去往敵國和親硝烂。 傳聞我的和親對象是個殘疾皇子箕别,可洞房花燭夜當晚...
    茶點故事閱讀 43,697評論 2 351

推薦閱讀更多精彩內(nèi)容