博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Docker在CentOS安装文档
阅读量:6427 次
发布时间:2019-06-23

本文共 3435 字,大约阅读时间需要 11 分钟。

Docker在CentOS安装手册

这篇文档是通过Docker自己管理的发布版本包来指导你安装部署,使用这些包能确保您安装最新的Docker版本,

先决条件

Docker 需要一个64位操作系统CentOS,同时,您的内核(kernel)版本至少是3.10。

检查您当前内核的版本,打开一个终端(terminal),使用命令uname -r 来展示你的内核版本

$ uname -r3.10.0-229.el7.x86_64

最后,建议你的系统打上最新的补丁,保证最新内核版本上已报告出来的kernel bugs都被修复啦

安装

有两种方式来安装Docker容器(Docker Engine)。你可以使用yum安装包管理器。或者使用curl通过站点get.docker.com来满足

自动化安装,第二种方法运行的安装脚本内部同样也是运用yum的方式。

YUM安装方式(Install with yum)

1.使用有sudo权限或者root权限的用户登录服务器。

2.确保你已有的yum包更新到最新版本

$ sudo yum update

3.添加yum仓库

× Linux CentOS 7 添加仓库方式

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

× Linux CentOS 6 添加仓库方式

$ cat >/etc/yum.repos.d/docker.repo <<-EOF[dockerrepo]name=Docker Repositorybaseurl=https://yum.dockerproject.org/repo/main/centos/6enabled=1gpgcheck=1gpgkey=https://yum.dockerproject.org/gpgEOF

4.安装Docker部署包

$ sudo yum install docker-engine

5.启动Docker进程

$ sudo service docker start

6.为了验证docker被正确安装,我们通过在容器(container)中运行一个测试镜像来检验

$ sudo docker run hello-worldUnable to find image 'hello-world:latest' locally    latest: Pulling from hello-world    a8219747be10: Pull complete    91c95931e552: Already exists    hello-world:latest: The image you are pulling has been verified. Important: image verification is a tech preview feature and should not be relied on to provide security.    Digest: sha256:aa03e5d0d5553b4c3473e89c8619cf79df368babd1.7.1cf5daeb82aab55838d    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.            (Assuming it was not already locally available.)     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    For more examples and ideas, visit:     http://docs.docker.com/userguide/

脚本安装方式(Install with the script)

1.使用有sudo权限或者root权限的用户登录服务器。

2.确保你已有的yum包更新到最新版本

$ sudo yum update

3.运行Docker安装脚本

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

这个脚本会添加docker.repo知识仓库,然后安装Docker。

4.启动Docker进程

$ sudo service docker start

5.为了验证docker被正确安装,我们通过在容器(container)中运行一个测试镜像来检验

$ sudo docker run hello-world

创建Docker组

Docker绑定Unix套接字来替换TCP端口。默认Unix套接字由root用户或者其他有sudo权限的用户拥有。由于这个原因Docker进程总是以root用户来运行。

当你使用Docker命令的时候避免你使用sudo命令,可以创建一个Unix用户组叫做docker然后把用户添加进去。当Docker进程开启后,它就可以被Docker用户组拥有,且具有读写权限。

警告:docker用户组相当于root用户组,对于你的系统产生多大的安全影响,细节

请查看

创建Docker用户组并且添加用户

1.使用有sudo权限的用户登录CentOS

2.创建Docker用户组并且添加用户

sudo usermod -aG docker your_usernam

3.注销并重新登录

4.通过不用sudo命令验证你的docker操作

$ docker run hello-world

自启动docker进程

为了能在系统引导时启动docker进程,请做如下操作:

$ sudo chkconfig docker on

卸载

你可以通过yum卸载Docker软件

1.列出你安装过的包

$ yum list installed | grep dockeryum list installed | grep dockerdocker-engine.x86_64   1.7.1-1.el7 @/docker-engine-1.7.1-1.el7.x86_64.rpm

2.移除安装包

$ sudo yum -y remove docker-engine.x86_64

这个命令并没有移除镜像,容器和卷和你的主机上配置过的配置文件

3.删除所有的镜像,容器和卷,如下:

$ rm -rf /var/lib/docker

4.定位和删除用户配置过的配置文件

转载地址:http://gofga.baihongyu.com/

你可能感兴趣的文章
Mobile devices bundled with malware?
查看>>
《JavaScript面向对象精要》——1.5 访问属性
查看>>
《Python数据可视化编程实战》—— 第 1 章 准备工作环境
查看>>
Android应用性能优化最佳实践.1.1 Android Studio的优势
查看>>
《设计模式解析(第2版•修订版)》—第2章 2.2节什么是UML
查看>>
【直播】APP全量混淆和瘦身技术揭秘
查看>>
10个大坑,当你产品上架AppStore会遇到
查看>>
【shell 脚本】两种登录方式
查看>>
学习编程的方法
查看>>
升级linux自带的Python
查看>>
百度地图2.0瓦片地址获取(窗口内瓦片)
查看>>
我的友情链接
查看>>
.JDK1.6安装配置后的测试
查看>>
判断闰年的函数
查看>>
pkill -9 nginx
查看>>
关于ASP.NET MVC4 Web API简单总结
查看>>
BGP最新的AS号:4-byte-as 转换为十进制及AS号兼容性
查看>>
Windows2008server R2 组策略批量更改本地管理员密码
查看>>
ubutnu安装geany
查看>>
webservice 之 Java CXF实战效果 RS WS(一)
查看>>