Files
nexus/wiki/concepts/Docker-Image.md
2026-04-17 08:38:12 +08:00

1.0 KiB
Raw Blame History

title, type, tags, sources, last_updated
title type tags sources last_updated
Docker Image concept
docker
container
image
docker-images-transfer-guide
2026-04-17

Summary

Docker ImageDocker 镜像)是容器化平台的核心概念,是一个只读模板,包含应用程序及其运行时所需的全部依赖(代码、运行时、库、环境变量、配置文件等)。

Definition

用于创建 Docker 容器的只读模板,通过分层存储实现高效复用和传输。

Key Attributes

  • 格式:分层文件系统
  • 存储方式:可导出为 tar 归档文件
  • 复用机制:分层存储,多个镜像可共享基础层

Use Cases

  • 应用程序打包和分发
  • 跨环境部署(开发、测试、生产)
  • 离线环境镜像迁移

Connections