Docker pull拉取镜像命令的入门教程

1. 基础概念

Docker镜像 是构建容器的只读模板,存储在仓库(如Docker Hub)中。docker pull用于从仓库下载镜像到本地。

2. 命令语法

bash 复制代码
docker pull [选项] <镜像名:标签>
  • 镜像名 :格式为[仓库地址/]命名空间/镜像名(默认仓库为Docker Hub)
  • 标签 :指定版本(如latest, 1.0.0),默认latest

3. 基础操作

拉取官方镜像
bash 复制代码
docker pull nginx  # 等价于 docker pull library/nginx:latest
拉取指定版本
bash 复制代码
docker pull nginx:1.25.3
拉取私有仓库镜像
bash 复制代码
# 登录私有仓库
docker login registry.example.com

# 拉取镜像
docker pull registry.example.com/myapp:v2

4. 高级用法

多架构镜像
bash 复制代码
# 拉取支持多种架构的镜像(如amd64/arm64)
docker pull --platform linux/amd64 nginx:latest
禁用缓存
bash 复制代码
docker pull --disable-content-trust=false nginx  # 强制校验镜像签名
进度条控制
bash 复制代码
docker pull --quiet nginx  # 静默模式

5. 验证镜像

bash 复制代码
# 查看本地镜像列表
docker images

# 检查镜像详细信息
docker inspect nginx:latest

6. 常见问题

问题1:镜像拉取失败
log 复制代码
Error response from daemon: manifest for nginx:latest not found

解决方案

  • 检查镜像名拼写
  • 尝试指定完整路径:docker pull library/nginx
  • 清除本地缓存:docker system prune -a
问题2:权限不足
log 复制代码
Error response from daemon: Get https://registry.example.com/v2/: unauthorized

解决方案

bash 复制代码
docker login registry.example.com
# 或使用--username参数
docker pull --username=yourname registry.example.com/myapp
问题3:网络超时
log 复制代码
Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout

解决方案

  • 配置镜像加速器(如阿里云):

    json 复制代码
    {
      "registry-mirrors": ["https://<你的ID>.mirror.aliyuncs.com"]
    }

    保存至/etc/docker/daemon.json后重启服务:

    bash 复制代码
    sudo systemctl restart docker

7. 最佳实践

  1. 明确指定标签 :避免使用latest标签,改用语义化版本(如v1.2.3

  2. 定期清理无用镜像

    bash 复制代码
    docker image prune -a  # 删除未使用的镜像
  3. 使用镜像扫描

    bash 复制代码
    docker scan nginx:latest  # 检查漏洞

8. 示例流程

bash 复制代码
# 1. 搜索可用镜像
docker search nginx

# 2. 拉取指定版本
docker pull nginx:1.25.3

# 3. 验证镜像
docker images | grep nginx

# 4. 运行容器测试
docker run -d --name web nginx:1.25.3
相关推荐
Dovis(誓平步青云)8 小时前
《Linux生态下HTTP协议解析+进阶HTTPS证书:抓包、拆解与问题排查实战》
linux·运维·http
QT 小鲜肉8 小时前
【Linux命令大全】001.文件管理之diff命令(实操篇)
linux·运维·chrome·笔记
Ahtacca8 小时前
保姆级教程:Obsidian + PicGo + Gitee 搭建免费稳定的自动化图床
运维·笔记·学习·gitee·自动化
学Linux的语莫8 小时前
cpu的指标说明
运维·服务器
眠りたいです8 小时前
Docker:Docker image常用命令使用及实操
运维·docker·容器·eureka·镜像
可爱又迷人的反派角色“yang”8 小时前
docker基本概念(一)
linux·运维·docker·容器
CHINAHEAO8 小时前
Docker 安装Bagisto详细过程
运维·docker·容器
西瓜和拾月9 小时前
Ubuntu Server 24.04 LVM 分区扩容
linux·运维·ubuntu
RisunJan9 小时前
Linux命令-help命令(查看 Shell 内置命令帮助信息)
linux·运维·服务器
RemainderTime9 小时前
(十)Spring Cloud Alibaba 2023.x:生产级 CI/CD 全链路实战(从 Dockerfile 到 Jenkins)
运维·spring cloud·ci/cd·docker·jenkins