Debian安装Docker

作者: maofun 分类: 代码 发布时间: 2020-05-03 11:46

这几天在部署Nodebb,折腾了两天,各种问题都遇到过,今天分享一下Debian下如何方便的安装Docker。

通过apt安装

没有意外,在root用户下。

先更新 apt 包列表:

apt-get update

安装HTTP依赖:

Debian 8 / Debian 9 :

apt install apt-transport-https ca-certificates curl gnupg2 lsb-release software-properties-common

Debian 7 :

apt install apt-transport-https ca-certificates curl lsb-release python-software-properties

配置Docker存储库密钥:

服务器如果在国内:

curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/debian $(lsb_release -cs) stable"

服务器如果在国外:

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"

更新 apt 软件包缓存:

apt-get update

最后安装Docker-ce

apt-get install docker-ce

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注