码迷,mamicode.com
首页 > 系统相关 > 详细

在Ubuntu16.04安装Docker

时间:2020-12-03 12:27:19      阅读:14      评论:0      收藏:0      [点我收藏+]

标签:cat   containe   software   add   table   成功   安装源   emc   索引   

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

标签:cat   containe   software   add   table   成功   安装源   emc   索引   

原文地址:https://www.cnblogs.com/Lin1031/p/14056940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!