Categories: Docker工作

Centos7上安装和使用Docker

环境:CentOS 7

Docker支持CentOS 6及以后的版本。

对于CentOS 6系统可使用EPEL库安装Docker, 命令如下:

yum install -yhttp://mirrors.yun-idc.com/epel/6/i386/epel-release-6-8.noarch.rpm

yum install -y docker-io

 
 

首先关闭selinux

[root@localhost ~]# yum install -y docker

也可以换成国内源,速度比较快.我换成阿里的.

先备份自带源,万一出错改回来

[root@localhost ~]# mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

[root@localhost ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

 
 

安装完毕手动启动下

[root@localhost ~]# systemctl start docker

[root@localhost ~]# systemctl enable docker

[root@zabbix-server ~]# docker pull ubuntu ##可以在后面指定Ubuntu版本,比如docker pull ubuntu14.04

如果不指定版本号,默认下载最新的

 
 

下载完成就是运行

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

查看

[root@localhost ~]# docker images

 
 

#TAG 用来标记来自同一个仓库的不同镜像,例如Ubuntu仓库有多个镜像,10.04 , 12.04,12.10

 
 

 
 

Kai

Share
Published by
Kai

Recent Posts

国产异地组网新秀——节点小宝3.0使用体验

截止发稿时,节点小宝已经迭代到…

4 天 ago

VMCE 练习题 – 2024 年 12 月

VMCE 练习题 - 2024…

1 周 ago

VMCE 练习题 – 2024 年 11 月

VMCE 练习题 - 2024…

1 周 ago

VMCE 练习题 – 2024 年 10 月

 VMCE 练习题 - 202…

1 周 ago

狗狗币最新挖矿教程

说明 如果你没有免费的电不建议…

1 月 ago

【国产软件】平替Veeam的容灾备份 云祺

最近在测试国产容灾备份软件,云…

2 月 ago