当前位置:首页 » 《随便一记》 » 正文

无法访问 www.docker.com 如何安装 docker

12 人参与  2024年09月16日 08:41  分类 : 《随便一记》  评论

点击全文阅读


Ubuntu

$ apt update && apt install -y ca-certificates curl$ install -m 0755 -d /etc/apt/keyrings$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc$ chmod a+r /etc/apt/keyrings/docker.asc$ echo \  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null$ apt update # 列出可用的版本$ apt-cache madison docker-ce | awk '{ print $3 }'$ apt install -y docker-ce=5:23.0.6-1~ubuntu.22.04~jammy docker-ce-cli=5:23.0.6-1~ubuntu.22.04~jammy containerd.io docker-buildx-plugin docker-compose-plugin

CentOS

$ yum install -y yum-utils$ yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo# 列出可用的版本$ yum list docker-ce.x86_64 --showduplicates | sort -r$ yum install -y docker-ce-23.0.6-1.el8$ systemctl enable docker-ce$ systemctl start docker-ce

点击全文阅读


本文链接:http://zhangshiyu.com/post/160588.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1