在CentOS、Fedora系统中使用Docker的方法

一、从docker官方yum源进行安装

1、添加docker官方源

cat >/etc/yum.repos.d/docker.repo <<-EOF
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/7
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
EOF

2、安装和启动

#安装
sudo yum install docker-engine
#启动
sudo systemctl enable docker.service
#开机启动
systemctl enable docker.service
#验证安装
sudo docker run hello-world

二、用脚本的方式安装

curl -sSL https://get.docker.com/ | sh

三、非特权用户运行 docker 命令

在 CentOS 或 Fedora 上安装完成 Docker 后,为了能以非 root 用户运行 docker,你需要把你自己添加进 docker 用户组,使用如下命令:

sudo usermod -a -G docker $USER

登出,然后再登入,以使组改变生效。
这个时候,你应该可以以一个非特权用户运行 docker 命令了。

四、使用国内源

1、安装dao

curl -sSL https://get.daocloud.io/daomonit/install.sh | sh -s 6d3f36d42ae3f3d4237943c65c8f3e5446e49a71

2、使用dao命令

dao pull ubuntu

看起来像这样:

➜  ~  dao pull ubuntu
Dao from DaoCloud
Initializing, Please wait a minute
Using default tag: latest
Pulling repository daocloud.io/daocloud/daocloud-toolset
aa5dc2eecd4a: Download complete
Status: Image is up to date for daocloud.io/daocloud/daocloud-toolset:latest
daocloud.io/daocloud/daocloud-toolset: this image was pulled from a legacy registry.  Important: This registry version will not be supported in future versions of docker.
Inital Success

# ----------------------------------------------------------------------------
# DaoCloud ToolBox for Docker
#
# DaoCloud, Inc. (c) 2015
#
# Fastest way to pull image from Docker Registry
# ----------------------------------------------------------------------------

Pulling repository ubuntu
Pulling ubuntu image metadata
Pulling ubuntu:latest tag metadata
0105f98ced6d: Load layer complete
66395c31eb82: Load layer complete
002fa881df8a: Load layer complete
a005e6b7dd01: Load layer complete
Loading image to docker ...

** Pull ubuntu success. **
You can find it with 'docker images ubuntu'

其他的可以参考我们之前发布的文章

(0)

相关推荐

  • linux系统中InputStream输入流的方法之reset()和mark()命令的注意事项

    今天写一个读写程序,运用到InputStream的reset方法是发现竟然失败了,然后查了一下JDK源码,发现BufferInputStream重写了父类FilterInputStream的mark和 ...

  • Windows 7系统中加快启动速度的方法

    电脑用过一段时间,软件装的多了,文件也越积累越多,诸多问题一同出现的时候我们的电脑就会变得缓慢,甚至卡机,开个电脑要花很长的时间。那么应该怎么去解决呢?这里我们就跟大家来说win7中如何加快启动速度, ...

  • win7系统中加快启动速度的方法

    电脑用过一段时间,软件装的多了,文件也越积累越多,诸多问题一同出现的时候我们的电脑就会变得缓慢,甚至卡机,开个电脑要花很长的时间。那么应该怎么去解决呢?这里我们就跟大家来说win7中如何加快启动速度, ...

  • Win8系统如何删除windows服务?Win8系统中删除系统服务的方法

    电脑使用久了,默认运行的系统服务也就越来越多,当运行的系统服务多的时候,就会导致系统的运行速度越来越慢,这时候,我们其实可以删除一些用不到的系统服务.那么,Win8系统如何删除系统服务呢?接下来,我们 ...

  • Linux系统中网络配置检查方法

    相信很多小伙伴都有在使用Linux系统,那么在其中我们怎么去检查网络配置呢?方法很简单,下面小编就来为大家介绍.具体如下:1. 首先,打开电脑上的虚拟机软件,在终端处切换至student用户,并命令为 ...

  • linux系统中tar命令使用方法

    简单介绍下linux系统中tar命令使用方法,有举例说明. 操作方法 01 打包当前目录下的所有后缀为.log的文件和一个box目录(tar包). 02 把当前目录下所有后缀名为.log的文件打包并压 ...

  • 在CentOS系统中安装RPMforge的方法

    RPMforge 是 Dag.Dries 和其它软件包的组合.它们为 CentOS 提供了超过 4000 个软件包,包括 mplayer.xmms-MP3和其它流行的媒体播放工具.RPMforge 不 ...

  • CentOS下top和free命令查看系统中空闲内存的方法

    下面介绍使用top和free命令查看系统中空闲内存 所以你执行top命令看到的 [root@linuxzgf ~]# top Mem: 8174492k total, 7124268k used,并不 ...

  • Linux系统中查找文件的方法

    -name 必须用到的选项。表明要求系统按照文件名查找. 一般格式:find /(dirname) -name filename 具体文件名查找法: 如果知道了某个文件的文件名,而不知道这个文件放到哪 ...