hans

hans

【Linux】【Docker】Ubuntu14.04 安裝 Docker CE


官方安裝手冊地址:

https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository

  1. 檢查卸載舊版本 docker

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

  2. 安裝一些其他軟體

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

  3. 添加官方 PGP 秘鑰:

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

  4. 添加 apt 安裝配置:

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

  5. 安裝:

    sudo apt-get update
    sudo apt-get install docker-ce

  6. 使用 docker 時取消 sudo 命令:

    sudo gpasswd -a username docker
    sudo service docker restart

完事重啟電腦即可。

載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。