一开始我跟着Docker给出的官网文档 Ubuntu | Docker Docs 流程走,倒腾了两个多小时,遇到了各种坑,最后放弃了。在我们利用脚本安装Docker命令前,我们先把已经安装的Docker全部卸载掉。
卸载Docker
1.删除docker及安装时主动安装的全部包
- sudo apt-get autoremove docker docker-ce docker-engine docker.io containerd runc
复制代码 2.查看docker是否卸载干净
- sudo dpkg -l | grep docker
- sudo dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P # 删除无用的相关的配置文件
复制代码 3.删除没有删除的相关插件
- sudo apt-get autoremove docker-ce-*
复制代码 4.删除docker的相关配置&目录
- rm -rf /etc/systemd/system/docker.service.d
复制代码 5.确定docker卸载完毕
然后根据 docker官方一键脚本 这个教程利用官方脚本主动安装Docker,前三步乐成了,第四步出问题了。
安装Docker
1. 下载官方安装脚本
- curl -fsSL https://test.docker.com -o test-docker.sh
复制代码 2. 执行脚本
3. 查看Docker版本信息,若能输出书本信息则证明安装乐成
- chen@QiLin:~$ sudo docker version
- [sudo] password for chen:
- Client: Docker Engine - Community
- Version: 27.5.0-rc.2
- API version: 1.47
- Go version: go1.22.10
- Git commit: 80f7848
- Built: Tue Jan 7 15:41:26 2025
- OS/Arch: linux/amd64
- Context: default
- Server: Docker Engine - Community
- Engine:
- Version: 27.5.0-rc.2
- API version: 1.47 (minimum version 1.24)
- Go version: go1.22.10
- Git commit: 43fc912
- Built: Tue Jan 7 15:41:26 2025
- OS/Arch: linux/amd64
- Experimental: false
- containerd:
- Version: 1.7.24
- GitCommit: 88bf19b2105c8b17560993bee28a01ddc2f97182
- runc:
- Version: 1.2.2
- GitCommit: v1.2.2-0-g7cb3632
- docker-init:
- Version: 0.19.0
- GitCommit: de40ad0
复制代码 4. 尝试运行hello-world镜像来验证Docker是否正确安装
- chen@QiLin:~$ sudo docker run hello-world
- Unable to find image 'hello-world:latest' locally
- 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.
- See 'docker run --help'.
复制代码 网上教程说在利用Docker拉取镜像时,偶然会遇到 Error response from daemon 错误是由于 Docker 无法在规定时间内乐成连接到 Docker Hub 或由于网络不稳定而超时引起的。办理这一问题的有用方法是配置 Docker 镜像加速器,提高拉取镜像的速度,避免因网络超时而失败。
办理方法:配置 Docker 镜像加速器
为了避免 Docker 镜像拉取失败,我们可以配置国内或其他可用的镜像源加速器,减少网络连接的超时问题。打开 Docker 的配置文件 daemon.json。该文件通常位于:/etc/docker/daemon.json,然后添加镜像加速器。
- sudo vi /etc/docker/daemon.json
复制代码- {
- "registry-mirrors": [
- "https://docker.hpcloud.cloud",
- "https://docker.m.daocloud.io",
- "https://docker.unsee.tech",
- "https://docker.1panel.live",
- "http://mirrors.ustc.edu.cn",
- "https://docker.chenby.cn",
- "http://mirror.azure.cn",
- "https://dockerpull.org",
- "https://dockerhub.icu",
- "https://hub.rat.dev"
- ]
- }
复制代码 这些镜像源能够有用加速 Docker 镜像的下载,尤其是在国内的网络环境下,可以明显提高镜像拉取速度,并减少因网络不稳定导致的超时错误。
最终我的 daemon.json文件包罗如下内容,小同伴们可以尽情copy。
- {
- "insecure-registries": ["registry.local", "127.0.0.1:5001", "10.10.13.42:5000"],
- "registry-mirrors": ["https://docker.hpcloud.cloud",
- "https://docker.m.daocloud.io",
- "https://docker.unsee.tech",
- "https://docker.1panel.live",
- "http://mirrors.ustc.edu.cn",
- "https://docker.chenby.cn",
- "http://mirror.azure.cn",
- "https://dockerpull.org",
- "https://dockerhub.icu",
- "https://hub.rat.dev"],
- "bip": "172.18.18.1/24",
- "data-root": "/var/lib/docker",
- "storage-driver": "overlay2",
- "live-restore": true,
- "log-opts": {
- "max-size": "500m"
- }
- }
复制代码 留意:在编辑 daemon.json 文件时,确保 JSON 格式正确。特殊留意,最后一个镜像加速器地址后不要加逗号,否则会导致 Docker 启动失败。如果利用某些镜像加速器时依然遇到问题,可能是这些加速器暂时不可用。发起更换其他加速器,或者利用官方的 Docker 镜像加速服务。
配置完成后,生存文件并重启 Docker 服务,以使更改生效。
- sudo systemctl daemon-reload
- sudo systemctl restart docker
复制代码 然后重新运行:sudo docker run hello-world
- sudo docker run hello-world
- Unable to find image 'hello-world:latest' locally
- latest: Pulling from library/hello-world
- c1ec31eb5944: Pull complete
- Digest: sha256:5b3cc85e16e3058003c13b7821318369dad01dac3dbb877aac3c28182255c724
- Status: Downloaded newer image for hello-world:latest
- Hello from Docker!
- This message shows that your installation appears to be working correctly.
- To generate this message, Docker took the following steps:
- 1. The Docker client contacted the Docker daemon.
- 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
- (amd64)
- 3. The Docker daemon created a new container from that image which runs the
- executable that produces the output you are currently reading.
- 4. The Docker daemon streamed that output to the Docker client, which sent it
- to your terminal.
- To try something more ambitious, you can run an Ubuntu container with:
- $ docker run -it ubuntu bash
- Share images, automate workflows, and more with a free Docker ID:
- https://hub.docker.com/
- For more examples and ideas, visit:
- https://docs.docker.com/get-started/
复制代码 乐成!!!!!
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |