在root用户下运行
先运行更新,然后升级
apt update
apt upgrade -y
安装docker依赖包
apt install apt-transport-https ca-certificates curl software-properties-common -y
添加docker官方的GPG密钥
echo 'deb https://download.docker.com/linux/debian stretch stable'> /etc/apt/sources.list.d/docker.list
添加docker仓库,确保/etc/apt/sources.list.d/docker.list文件是不存在或者无内容的
echo 'deb https://download.docker.com/linux/debian stretch stable'> /etc/apt/sources.list.d/docker.list
导入证书
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common
更新apt
apt update
安装docker
apt install docker.io -y
检查版本
docker -v
docker配置镜像源 docker国内不能用,以下镜像能ping通则可以使用(不能就自行更换镜像)
{
"registry-mirrors": [
"https://docker.1panel.live",
"https://hub.rat.dev",
"https://docker.nju.edu.cn"
]
}
重启docker
systemctl restart docker
查看是否配置成功
docker info
拉取镜像测试
docker run hello-world
列出镜像
docker images
参考:http://t.csdnimg.cn/kMkyA