在Ubuntu16.04安装Docker

Posted 春日宴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Ubuntu16.04安装Docker相关的知识,希望对你有一定的参考价值。

1.查看Linux内核依赖

kernel version >= 3.8

查看代码:

uname -a | awk ‘{split($3, arr, "-"); print arr[1]}‘

2.使用Docker repository安装

1)更新apt包索引:
sudo apt-get update

2)添加https支持

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

3)添加Docker GPG秘钥(国内源)

curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

4)添加安装源(国内源)

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

3.安装Docker

1)更新apt包索引:

sudo apt-get update

2)安装Docker

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

4.开启Docker

sudo systemctl enable docker
sudo systemctl start docker

5.验证是否安装成功

如果出现"Hello from Docker.", 则代表运行成功

 sudo docker run hello-world

6.不使用sudo命令执行docker

1)使用有sudo权限的帐号登录系统。

2)创建docker分组,并将相应的用户添加到这个分组里面。

sudo usermod -aG docker your_username

3)退出,然后重新登录,以便让权限生效。

4)确认你可以直接运行docker命令。

$ docker 
          run hello-world

以上是关于在Ubuntu16.04安装Docker的主要内容,如果未能解决你的问题,请参考以下文章

无法在 Docker 中的 ubuntu 16.04 上安装 openssh-server

Docker 1.12.3 在 Ubuntu 16.04 上的安装和配置

Docker 1.12.3 在 Ubuntu 16.04 上的安装和配置

Ubuntu16.04安装Docker 入门

ubuntu16.04安装docker

无法在 Ubuntu 16.04 中启动 Docker 服务