• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
导航菜单
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • windows
  • 服务器硬件
  • 服务器运维
  • 云计算
  • 虚拟化
  • IIS教程
  • Linux
  • Apache
  • Ftp
  • DNS
  • Nginx
您的位置:首页 > 服务器 >虚拟化 > Centos下安装docker教程

Centos下安装docker教程

作者: 字体:[增加 减小] 来源:互联网

本文主要包含Centos,安装docker等服务器相关知识,希望可以进行参考

通过yum安装

需要root或者能sudo的权限

yum包更新到最新

$ sudo yum update

添加Docker yum源

$ sudo tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/$releasever/
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg
EOF

安装Docker包

$ sudo yum install docker-engine

启动Docker守护进程

$ sudo service docker start

通过测试镜像运行一个容器来验证Docker是否安装正确

$ sudo docker run hello-world
Unable 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/

通过脚本安装

需要root或者能sudo的权限

yum包更新到最新

$ sudo yum update

运行Docker安装脚本

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

这个脚本会添加docker.repo仓库并且安装Docker

启动Docker守护进程

$ sudo service docker start

通过测试镜像运行一个容器来验证Docker是否安装正确

$ sudo docker run hello-world

创建一个Docker用户组

docker守护进程绑定在Unix socket 而不是 TCP 端口。默认情况下Unix socket属于root用户和具有sudo权限用户的使用范畴。出于这个原因,docker守护进程需要一直在root用户下面运行。

To avoid having to use sudo when you use the docker command, create a Unix group called docker and add users to it. When the docker daemon starts, it makes the ownership of the Unix socket read/writable by the docker group.

为了避免运行docker命令的时候需要使用sudo命令,创建一个叫docker的Unix用户组并将需要运行docker的用户添加进去。当开始运行docker守护进程,会令docker用户组的成员拥有Unix socket的读写权限。

创建docker用户组并添加用户:

1.需要root或者能sudo的权限
2.创建docker用户组并添加用户

sudo usermod -aG docker your_username

3.退出并且登录到your_username,如果在your_username下也建议退出再重新登录一次,这确保您的用户正在运行正确的权限。
4.验证运行docker已不再需要sudo命令

$ docker run hello-world

开机运行docker

$ sudo chkconfig docker on

您可能感兴趣的文章:

  • CentOS7 安装docker 解决启动不了的问题
  • 在CentOS 7上安装Docker环境的方法与注意事项
  • CentOS/RedHat 6.5 离线安装Docker
  • Centos 6.5中安装docker的步骤(简洁版)
  • CentOS7 docker服务无法启动解决方案及实现步骤
  • centos7 安装docker步骤详细介绍
  • Docker CentOS7的系统上安装部署以及基础教程
  • CentOS 7.2 下安装 Docker 1.12.3 版的详细方法
  • Docker在CentOS7下不能下载镜像timeout的解决办法(图解)
  • centOS7安装docker的详细步骤
分享到:QQ空间新浪微博腾讯微博微信百度贴吧QQ好友复制网址打印

您可能想查找下面的文章:

  • centos 下docker 安装方法
  • VMware14 上安装CentOS 7 图文教程
  • CentOS 7中搭建KVM虚拟化平台的方法步骤
  • CentOS7虚拟机安装并配置docker套件
  • centos7更改docker仓库的方法
  • Centos7上安装docker的方法
  • Centos7下安装与卸载docker应用容器引擎的方法
  • CentOS7.2服务器上搭建Docker私有镜像仓库操作示例
  • VMWare 虚拟机Centos7安装Oracle数据库的教程图解
  • centos7搭建docker私人仓库的方法(kubernetes)

相关文章

  • 详解mac下通过docker搭建LEMP环境
  • Docker Machine深入学习
  • 使用docker快速搭建Spark集群的方法教程
  • 详解修改docker时区及docker常用命令
  • 利用docker搭建web服务环境的方法步骤
  • 一次因为数据问题引起的reduce被卡住streaming作业问题排查,reducestreaming
  • 如何对关键应用实施虚拟化
  • 详细介绍kvm虚拟机静态和动态迁移(图文介绍)
  • Docker 容器内存监控原理及应用
  • Docker aufs存储驱动layer、diff、mnt目录的区别介绍

文章分类

  • windows
  • 服务器硬件
  • 服务器运维
  • 云计算
  • 虚拟化
  • IIS教程
  • Linux
  • Apache
  • Ftp
  • DNS
  • Nginx

最近更新的内容

    • Docker堆栈的管理操作详解
    • VMware虚拟机克隆的方法
    • Docker搭建本地私有仓库的详细步骤
    • Windows10下安装Docker的步骤图文教程
    • virtualbox中ubuntu和windows共享文件夹设置教程
    • 虚拟化能够满足将来的存储系统的需求
    • 利用OpenVSwitch在多台主机上部署Docker的教程
    • 如何在Hyper-V虚拟机上安装WSUS服务器技巧
    • docker 如何删除none镜像
    • docker python如何实现打包的方法

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有