zoukankan      html  css  js  c++  java
  • Ubuntu16.04 安装 Docker

    root@ubuntu1604:~# more /etc/os-release
    NAME="Ubuntu"
    VERSION="16.04.5 LTS (Xenial Xerus)"
    ID=ubuntu
    ID_LIKE=debian
    PRETTY_NAME="Ubuntu 16.04.5 LTS"
    VERSION_ID="16.04"
    HOME_URL="http://www.ubuntu.com/"
    SUPPORT_URL="http://help.ubuntu.com/"
    BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
    VERSION_CODENAME=xenial
    UBUNTU_CODENAME=xenial

    开始安装:

    更新软件列表:

    apt-get update

    允许apt命令可以使用HTTPS访问Docker repository:

    apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

    添加Docker官方的GPG key:

    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

    验证key:

    apt-key fingerprint 0EBFCD88

    设置repository版本为stable并更新软件列表:

    add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

    apt-get update

    安装Docker CE和containerd:

    apt-get install docker-ce docker-ce-cli containerd.io

    查看docker版本:

    docker --version

    安装完成.

  • 相关阅读:
    上机练习
    myeclipse 快捷键
    关于java classpath问题
    windows installer 出错问题解决
    hibernate 问题
    axis2 部署webservice
    webservice开发
    关于web前端开发
    软件工程工具
    计网笔记
  • 原文地址:https://www.cnblogs.com/mafeng/p/11911460.html
Copyright © 2011-2022 走看看