📅  最后修改于: 2023-12-03 14:53:30.661000             🧑  作者: Mango
Docker是一个强大的开源容器化平台,它可以让开发人员快速构建、打包和部署应用程序。Docker可以大大简化应用程序中的复杂性,并提高应用程序的可移植性。
在本教程中,您将学习如何在Shell/Bash中安装Docker。
sudo apt-get update
sudo apt-get install curl apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
sudo docker run hello-world
Hello from Docker!
...