• ubuntu16.04上安装docker操作实例


    第一步:如果曾经安装过docker,移除已经安装过得docker

    $ sudo apt-get remove docker docker-engine docker-ce docker.io

    第二步:更新apt包索引

    $ sudo apt-get update

    第三步:安装前置环境

    $ sudo apt-get install -y
     apt-transport-https ca-certificates
     curl software-properties-common

    第四步:添加Docker的阿里镜像GPG key

    $ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

     第五步:验证该key是否安装成功

    $ sudo apt-key fingerprint 0EBFCD88

     第六步:设置stable存储库

    $ sudo add-apt-repository 
        "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu 
        $(lsb_release -cs) 
        stable"

    第七步:再次更新apt包索引

    $ sudo apt-get update

     第八步:列出可用的版本并安装自己想要的版本

    $ sudo apt-cache madison docker-ce

     选择要安装的特定版本,第二列是版本字符串,第三列是存储库名称,它指示包来自哪个存储库,以及扩展它的稳定性级别。要安装一个特定的版本,将版本字符串附加到包名中,并通过等号(=)分隔它们:

    $ sudo apt-get install docker-ce=<VERSION>

     或者直接安装最新版

    $ sudo apt-get install -y docker-ce

    第九步:验证Docker

    查看docker是否启动,显示active表示已经启动

    $ systemctl status docker

     若未启动,开启docker服务

    $ sudo systemctl start docker

    重启docker服务

    $ sudo service docker restart

    检查安装版本,注意一定得加sudo

    $ sudo docker version
    $ sudo docker info
    $ sudo docker --version

     

     运行Hello World实例

    $ sudo docker run hello-world

    第一次运行hello-world会报如下截图错误

     重启下docker再运行hello-world

     至此:docker安装完毕,一步一步安装并截图,方便以后查阅

  • 相关阅读:
    f5和ctrl+f5之浏览器缓存机制
    一次简单的http请求会碰撞出什么火花
    javascript的数据类型
    javascript语法规范
    javascript(ECMAScript)
    overflow:hidden可以将页面溢出内容隐藏起来
    抽屉新热榜头部实现
    数据分析
    抽屉页面设计
    position(relative)
  • 原文地址:https://www.cnblogs.com/xiaoyingzhanchi/p/14289905.html
Copyright © 2020-2023  润新知