Ubuntu 24.04 LTS系统安装Docker踩的坑

打印 上一主题 下一主题

主题 1021|帖子 1021|积分 3067

一开始我跟着Docker给出的官网文档 Ubuntu | Docker Docs 流程走,倒腾了两个多小时,遇到了各种坑,最后放弃了。在我们利用脚本安装Docker命令前,我们先把已经安装的Docker全部卸载掉。
卸载Docker

1.删除docker及安装时主动安装的全部包
  1. sudo apt-get autoremove docker docker-ce docker-engine docker.io containerd runc
复制代码
2.查看docker是否卸载干净
  1. sudo dpkg -l | grep docker
  2. sudo dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P  # 删除无用的相关的配置文件
复制代码
3.删除没有删除的相关插件
  1. sudo apt-get autoremove docker-ce-*
复制代码
4.删除docker的相关配置&目录
  1. rm -rf /etc/systemd/system/docker.service.d
复制代码
5.确定docker卸载完毕

  1. docker --version
复制代码
然后根据 docker官方一键脚本 这个教程利用官方脚本主动安装Docker,前三步乐成了,第四步出问题了。
安装Docker

1. 下载官方安装脚本
  1. curl -fsSL https://test.docker.com -o test-docker.sh
复制代码
2. 执行脚本
  1. sudo sh test-docker.sh
复制代码
3. 查看Docker版本信息,若能输出书本信息则证明安装乐成
  1. chen@QiLin:~$ sudo docker version
  2. [sudo] password for chen:
  3. Client: Docker Engine - Community
  4. Version:           27.5.0-rc.2
  5. API version:       1.47
  6. Go version:        go1.22.10
  7. Git commit:        80f7848
  8. Built:             Tue Jan  7 15:41:26 2025
  9. OS/Arch:           linux/amd64
  10. Context:           default
  11. Server: Docker Engine - Community
  12. Engine:
  13.   Version:          27.5.0-rc.2
  14.   API version:      1.47 (minimum version 1.24)
  15.   Go version:       go1.22.10
  16.   Git commit:       43fc912
  17.   Built:            Tue Jan  7 15:41:26 2025
  18.   OS/Arch:          linux/amd64
  19.   Experimental:     false
  20. containerd:
  21.   Version:          1.7.24
  22.   GitCommit:        88bf19b2105c8b17560993bee28a01ddc2f97182
  23. runc:
  24.   Version:          1.2.2
  25.   GitCommit:        v1.2.2-0-g7cb3632
  26. docker-init:
  27.   Version:          0.19.0
  28.   GitCommit:        de40ad0
复制代码
4. 尝试运行hello-world镜像来验证Docker是否正确安装
  1. chen@QiLin:~$ sudo docker run hello-world
  2. Unable to find image 'hello-world:latest' locally
  3. docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": read tcp 10.16.6.16:38474->54.227.20.253:443: read: connection reset by peer.
  4. See 'docker run --help'.
复制代码
网上教程说在利用Docker拉取镜像时,偶然会遇到 Error response from daemon 错误是由于 Docker 无法在规定时间内乐成连接到 Docker Hub 或由于网络不稳定而超时引起的。办理这一问题的有用方法是配置 Docker 镜像加速器,提高拉取镜像的速度,避免因网络超时而失败。
办理方法:配置 Docker 镜像加速器
为了避免 Docker 镜像拉取失败,我们可以配置国内或其他可用的镜像源加速器,减少网络连接的超时问题。打开 Docker 的配置文件 daemon.json。该文件通常位于:/etc/docker/daemon.json,然后添加镜像加速器。
  1. sudo vi /etc/docker/daemon.json
复制代码
  1. {
  2.   "registry-mirrors": [
  3.     "https://docker.hpcloud.cloud",
  4.     "https://docker.m.daocloud.io",
  5.     "https://docker.unsee.tech",
  6.     "https://docker.1panel.live",
  7.     "http://mirrors.ustc.edu.cn",
  8.     "https://docker.chenby.cn",
  9.     "http://mirror.azure.cn",
  10.     "https://dockerpull.org",
  11.     "https://dockerhub.icu",
  12.     "https://hub.rat.dev"
  13.   ]
  14. }
复制代码
这些镜像源能够有用加速 Docker 镜像的下载,尤其是在国内的网络环境下,可以明显提高镜像拉取速度,并减少因网络不稳定导致的超时错误。
最终我的 daemon.json文件包罗如下内容,小同伴们可以尽情copy。
  1. {
  2.   "insecure-registries": ["registry.local", "127.0.0.1:5001", "10.10.13.42:5000"],
  3.   "registry-mirrors": ["https://docker.hpcloud.cloud",
  4.                        "https://docker.m.daocloud.io",
  5.                        "https://docker.unsee.tech",
  6.                        "https://docker.1panel.live",
  7.                        "http://mirrors.ustc.edu.cn",
  8.                        "https://docker.chenby.cn",
  9.                        "http://mirror.azure.cn",
  10.                        "https://dockerpull.org",
  11.                        "https://dockerhub.icu",
  12.                        "https://hub.rat.dev"],
  13.   "bip": "172.18.18.1/24",
  14.   "data-root": "/var/lib/docker",
  15.   "storage-driver": "overlay2",
  16.   "live-restore": true,
  17.   "log-opts": {
  18.     "max-size": "500m"
  19.   }
  20. }
复制代码
留意:在编辑 daemon.json 文件时,确保 JSON 格式正确。特殊留意,最后一个镜像加速器地址后不要加逗号,否则会导致 Docker 启动失败。如果利用某些镜像加速器时依然遇到问题,可能是这些加速器暂时不可用。发起更换其他加速器,或者利用官方的 Docker 镜像加速服务。
配置完成后,生存文件并重启 Docker 服务,以使更改生效。
  1. sudo systemctl daemon-reload
  2. sudo systemctl restart docker
复制代码
然后重新运行:sudo docker run hello-world
  1. sudo docker run hello-world
  2. Unable to find image 'hello-world:latest' locally
  3. latest: Pulling from library/hello-world
  4. c1ec31eb5944: Pull complete
  5. Digest: sha256:5b3cc85e16e3058003c13b7821318369dad01dac3dbb877aac3c28182255c724
  6. Status: Downloaded newer image for hello-world:latest
  7. Hello from Docker!
  8. This message shows that your installation appears to be working correctly.
  9. To generate this message, Docker took the following steps:
  10. 1. The Docker client contacted the Docker daemon.
  11. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
  12.     (amd64)
  13. 3. The Docker daemon created a new container from that image which runs the
  14.     executable that produces the output you are currently reading.
  15. 4. The Docker daemon streamed that output to the Docker client, which sent it
  16.     to your terminal.
  17. To try something more ambitious, you can run an Ubuntu container with:
  18. $ docker run -it ubuntu bash
  19. Share images, automate workflows, and more with a free Docker ID:
  20. https://hub.docker.com/
  21. For more examples and ideas, visit:
  22. https://docs.docker.com/get-started/
复制代码
乐成!!!!!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

东湖之滨

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表