在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"

安装docker">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

以上是 在Ubuntu16.04安装Docker [操作系统入门] 的全部内容, 来源链接: utcz.com/z/519402.html

回到顶部