阅读量:1
在Ubuntu系统上安装Docker可通过以下步骤完成:
- 更新apt包索引并安装必要的软件包以允许apt通过HTTPS使用存储库:
sudo apt update 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包索引并安装Docker CE(社区版):
sudo apt update sudo apt install docker-ce
- 验证Docker是否成功安装,运行以下命令:
sudo systemctl status docker
如果成功安装,你应该看到Docker正在运行,并且状态为“active”或“running”。
- (可选) 如果想让非root用户也能运行Docker命令,可以将用户添加到docker用户组中:
sudo usermod -aG docker $USER
注意:要使用户更改生效,需要注销并重新登录。
现在你已经成功在Ubuntu系统上安装了Docker。可以开始使用Docker构建、管理容器。