zoukankan      html  css  js  c++  java
  • docker 安装部署

    • 使用阿里云镜像安装

    # step 1: 安装必要的一些系统工具
    yum install -y yum-utils device-mapper-persistent-data lvm2
    # Step 2: 添加软件源信息
    yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
    # Step 3: 更新并安装Docker-CE
    yum makecache fast
    yum -y install docker-ce
    # Step 4: 开启Docker服务
    service docker start

    • 安装指定版本的Docker-CE:

    # Step 1: 查找Docker-CE的版本:
    # yum list docker-ce.x86_64 --showduplicates | sort -r
    # Loading mirror speeds from cached hostfile
    # Loaded plugins: branch, fastestmirror, langpacks
    # docker-ce.x86_64 17.03.1.ce-1.el7.centos docker-ce-stable
    # docker-ce.x86_64 17.03.1.ce-1.el7.centos @docker-ce-stable
    # docker-ce.x86_64 17.03.0.ce-1.el7.centos docker-ce-stable
    # Available Packages
    # Step2: 安装指定版本的Docker-CE: (VERSION例如上面的17.03.0.ce.1-1.el7.centos)
    # sudo yum -y install docker-ce-[VERSION]

    配置镜像加速

    启动docker服务后,编辑/etc/docker/daemon.json配置文件,加入"registry-mirrors": ["https://aq63ygn3.mirror.aliyuncs.com"]

  • 相关阅读:
    9、Python 数据分析-2012美国大选献金项目
    Java 多线程
    高并发和多线程的关系
    什么是同一网段
    什么是CPU密集型、IO密集型?
    Ubuntu的which、whereis、locate和find命令
    python装饰器
    python 面试题
    Gsview裁剪EPS文件
    LaTeX pdf转eps格式
  • 原文地址:https://www.cnblogs.com/9host/p/13474063.html
Copyright © 2011-2022 走看看