共计 547 个字符,预计需要花费 2 分钟才能阅读完成。
安装 Docker 在 Ubuntu 上的步骤如下:
- 更新 apt 包索引:
sudo apt update
- 安装必要的依赖包,以便能够使用 HTTPS 来安装 Docker:
sudo apt install apt-transport-https ca-certificates curl software-properties-common
- 添加 Docker 的官方 GPG 密钥:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- 添加 Docker 存储库到 APT 源列表中:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- 再次更新 apt 包索引:
sudo apt update
- 安装 Docker CE (社区版):
sudo apt install docker-ce
- 确认 Docker 已成功安装并正在运行:
sudo systemctl status docker
现在,您已经成功在 Ubuntu 上安装了 Docker。您可以通过运行 docker --version
命令来检查 Docker 的版本。
丸趣 TV 网 – 提供最优质的资源集合!
正文完