zoukankan      html  css  js  c++  java
  • Docker学习系列(二)Docker初体验

    一.系统要求

      Docker的安装,需要在CentOS 7.0+版本,内核至少3.10,64-bit

            uname --r

    [randy@randysun ~]$ uname --r
    3.10.0-514.6.2.el7.x86_64
    [randy@randysun ~]$ 

    二.更新YUM

          yun update

    三.新建Docker repository

        在 /etc/yum.repos.d/下新建一个文件docker.repo,内如如下

    [dockerrepo]
    
    name=Docker Repository
    
    baseurl=https://yum.dockerproject.org/repo/main/centos/7
    
    enabled=1
    
    gpgcheck=1
    
    gpgkey=https://yum.dockerproject.org/gpg

    四.安装

    [root@randysun yum.repos.d]# yum install docker-engine
    Loaded plugins: fastestmirror
    Repository base is listed more than once in the configuration
    Repository updates is listed more than once in the configuration
    Repository extras is listed more than once in the configuration
    Loading mirror speeds from cached hostfile
    Resolving Dependencies
    --> Running transaction check
    ---> Package docker-engine.x86_64 0:17.05.0.ce-1.el7.centos will be installed
    --> Processing Dependency: docker-engine-selinux >= 17.05.0.ce-1.el7.centos for package: docker-engine-17.05.0.ce-1.el7.centos.x86_64
    --> Processing Dependency: libcgroup for package: docker-engine-17.05.0.ce-1.el7.centos.x86_64
    --> Processing Dependency: libseccomp.so.2()(64bit) for package: docker-engine-17.05.0.ce-1.el7.centos.x86_64
    --> Processing Dependency: libltdl.so.7()(64bit) for package: docker-engine-17.05.0.ce-1.el7.centos.x86_64
    --> Running transaction check
    ---> Package docker-engine-selinux.noarch 0:17.05.0.ce-1.el7.centos will be installed
    --> Processing Dependency: policycoreutils-python for package: docker-engine-selinux-17.05.0.ce-1.el7.centos.noarch
    ---> Package libcgroup.x86_64 0:0.41-11.el7 will be installed
    ---> Package libseccomp.x86_64 0:2.3.1-2.el7 will be installed
    ---> Package libtool-ltdl.x86_64 0:2.4.2-22.el7_3 will be installed

    五.启动Docker

    [root@randysun yum.repos.d]# service docker start
    Redirecting to /bin/systemctl start  docker.service
  • 相关阅读:
    CentOS 7 使用NVM管理nodejs(转)
    Linux下Git安装及配置 (转)
    linux添加计划任务(转载)
    centos编译libcurl库找不到ssl的问题
    windows下搭建nginx+php+虚拟主机配置过程(转)
    xocde中宏定义使用
    unity shader vs高亮提示插件
    xcode8 自动打包
    3DMax中如何刷顶点色
    Adreno Profiler调试注意事项
  • 原文地址:https://www.cnblogs.com/qizhelongdeyang/p/7266309.html
Copyright © 2011-2022 走看看