Linux系统一键安装docker,支持:Debain,Ubuntu,CentOS 7.x,CentOS 8.x,Fedora等系统,才用了官方+国内加速的方式,加速采用毫秒镜像(https://1ms.run),毫秒镜像提供经过审核的docker镜像加速下载服务,采用国内CDN分发方案保障镜像的高速下载。

一键安装

  • 国内安装(推荐)
 bash <(curl -f -s --connect-timeout 10 --retry 3 https://linuxmirrors.cn/docker.sh) --source 
mirrors.tencent.com/docker-ce --source-registry docker.1ms.run --protocol https --install-latested 
true --close-firewall false --ignore-backup-tips
  • 官方原版国内无法直接使用
curl -fsSL https://get.docker.com | bash -s docker
  • 使用阿里云镜像,国内可能安装失败
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun

Debain

  • 更新您的包管理工具。
sudo apt-get update
  • 添加阿里云源到您的实例中,这个源包含Docker软件包,方便您使用命令来安装和更新Docker

sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
sudo curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository -y "deb [arch=$(dpkg --print-architecture)] https://mirrors.aliyun.com/docker- 
ce/linux/debian $(lsb_release -cs) stable"
sudo apt-get update
  • 安装Docker社区版本,容器运行时containerd.io,以及Docker构建和Compose插件。
sudo apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
  • 启动Docker并设置Docker守护进程在系统启动时自动启动,这样可以确保每次系统启动时,Docker服务也会自动启动。
sudo systemctl start docker
sudo systemctl enable docker

Ubuntu

  • 更新您的包管理工具。
sudo apt-get update
  • 添加阿里云源到您的实例中,这个源包含Docker软件包,方便您使用命令来安装和更新Docker

sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
sudo curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository -y "deb [arch=$(dpkg --print-architecture)] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
  • 安装Docker社区版本,容器运行时containerd.io,以及Docker构建和Compose插件。
 sudo apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
  • 启动Docker并设置Docker守护进程在系统启动时自动启动,这样可以确保每次系统启动时,Docker服务也会自动启动。
sudo systemctl start docker
sudo systemctl enable docker

CentOS 7.x

  • 更新您的包管理工具。
 sudo yum -y update
  • 添加阿里云源到您的实例中,这个源包含Docker软件包,方便您使用命令来安装和更新Docker

 sudo wget -O /etc/yum.repos.d/docker-ce.repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
  • 安装Docker社区版本,容器运行时containerd.io,以及Docker构建和Compose插件。
sudo yum -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
  • 启动Docker并设置Docker守护进程在系统启动时自动启动,这样可以确保每次系统启动时,Docker服务也会自动启动。
 sudo systemctl start docker
sudo systemctl enable docker

CentOS 8.x

  • 更新您的包管理工具。
sudo dnf -y update
  • 添加阿里云源到您的实例中,这个源包含Docker软件包,方便您使用命令来安装和更新Docker,重要:由于网络原因,如果跳过此步可能会导致您安装Docker失败。
sudo dnf config-manager --add-repo=https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
  • 安装Docker社区版本,容器运行时containerd.io,以及Docker构建和Compose插件。
sudo dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
  • 启动Docker并设置Docker守护进程在系统启动时自动启动,这样可以确保每次系统启动时,Docker服务也会自动启动。
sudo systemctl start docker
sudo systemctl enable docker

Fedora

  • 更新您的包管理工具。
sudo dnf -y update
  • 添加阿里云源到您的实例中,这个源包含Docker软件包,方便您使用命令来安装和更新Docker,重要:由于网络原因,如果跳过此步可能会导致您安装Docker失败。
sudo dnf config-manager --add-repo=https://mirrors.aliyun.com/docker-ce/linux/fedora/docker-ce.repo
  • 安装Docker社区版本,容器运行时containerd.io,以及Docker构建和Compose插件。
sudo dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
  • 启动Docker并设置Docker守护进程在系统启动时自动启动,这样可以确保每次系统启动时,Docker服务也会自动启动。
sudo systemctl start docker
sudo systemctl enable docker
End

本文标题:Linux系统一键安装docker

本文链接:https://ciyol.cn/archives/11.html

除非另有说明,本作品遵循CC 4.0 BY-SA 版权协议

声明:转载请注明文章来源。

最后修改:2025 年 08 月 20 日
如果觉得我的文章对你有用,请随意赞赏