赞
踩
安装https协议、CA证书、dirmngr
apt-get update
apt-get install -y apt-transport-https ca-certificates
apt-get install dirmngr
2.添加GPG密钥并添加更新源
curl -fsSL https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/gpg | sudo apt-key add -
echo 'deb https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian/ buster stable' | sudo tee /etc/apt/sources.list.d/docker.list
系统更新以及安装docker
apt install update
apt install docker-ce
启动docker服务器
service docker start
安装compose
apt install docker-compose
docker安装测试(hello-world)
另外:
- docker version 查看docker的版本信息
-
- docker images 查看拥有的images
-
- docker ps 查看docker container
如果没有什么问题的话,则说明docker安装成功!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。