尝试过 Snap 版本的 docker ,但是有好多的坑,不适合.还是安装官方的比较好.

一 安装必要的前置软件

apt-get update

apt-get install \
    ca-certificates \
    curl \
    gnupg \
    lsb-release

二 添加 GPG

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

三 添加软件源

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

四 安装docker

apt-get update


apt-get install docker-ce docker-ce-cli containerd.io

标签: none