美文网首页
Ubuntu安装docker

Ubuntu安装docker

作者: 950545c4cd64 | 来源:发表于2019-03-05 22:30 被阅读0次
    # step 1: 安装必要的一些系统工具
    sudo apt-get update
    sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
    # step 2: 安装GPG证书
    curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
    # Step 3: 写入软件源信息
    sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
    # Step 4: 更新并安装 Docker-CE
    sudo apt-get -y updatesudo apt-get -y install docker-ce
    

    相关文章

      网友评论

          本文标题:Ubuntu安装docker

          本文链接:https://www.haomeiwen.com/subject/xhiauqtx.html