美文网首页Ubuntu
Ubuntu Desktop 16.04下安装Docker

Ubuntu Desktop 16.04下安装Docker

作者: qwfys | 来源:发表于2018-01-03 20:38 被阅读7次

    add key

    sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
    

    add sources

    sudo apt-add-repository 'deb https://apt.dockerproject.org/repo ubuntu-xenial main'
    

    update

    apt update
    

    install

    apt install -y docker-engine
    

    configuration

    user config

    sudo usermod -aG docker $(whoami)
    

    Using the Docker Command

    docker [option] [command] [arguments]
    

    相关文章

      网友评论

        本文标题:Ubuntu Desktop 16.04下安装Docker

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