debain安装docker
在Debian上安装Docker
执行以下步骤从Docker的存储库安装最新的稳定Docker版本。
1.安装通过HTTPS添加新存储库所需的软件包:
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common gnupg2
2.使用以下curl命令导入存储库的GPG密钥:
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
3.将稳定的Docker APT存储库添加到系统的软件存储库列表中:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
4.更新apt
软件包列表并安装最新版本的Docker CE(Community Edition):
sudo apt update
sudo apt install docker-ce
5.安装
5.安装
docker build -t 随便name -f Dockerfile .