docker安装

ubuntu 安装docker


更新软件包索引:
apt-get update

允许APT使用HTTPS:
apt-get install apt-transport-https ca-certificates curl software-properties-common lsb-release libssl-dev

添加Docker官方GPG密钥:
curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

添加Docker的稳定版本仓库:
add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

再次更新软件包索引:
apt-get update

安装Docker CE(社区版):
apt-get install docker-ce

验证Docker是否安装成功并运行:
systemctl status docker

安装完成后,你可能需要将你的用户添加到docker组,以便无需sudo即可运行Docker
usermod -aG docker ${USER}

 

报错:
Could not handshake: Error in the pull function. [IP: 3.168.86.26 443]
apt-get install libssl-dev


密钥存储在过时的 trusted.gpg 密钥环中(/etc/apt/trusted.gpg),请参见 apt-key(8) 的 DEPRECATION 一节以了解详情。
cd /etc/apt
cp trusted.gpg trusted.gpg.d

posted @ 2024-12-14 15:14  河北大学-徐小波  阅读(6)  评论(0编辑  收藏  举报