Files
nexus/wiki/entities/Docker.md
2026-04-27 16:26:34 +08:00

1.2 KiB
Raw Blame History

title, type, tags, last_updated
title type tags last_updated
Docker entity
2026-05-30

Docker

开源容器化平台Containerization Platform用于打包、分发和运行应用程序及其依赖。

Aliases

  • Docker Engine
  • Docker Desktop

Overview

Docker 通过容器Container将应用程序及其运行时环境打包为独立镜像支持跨平台一致部署。核心组件包括

  • Dockerfile:定义镜像构建步骤
  • docker pull/push:从 Registry 拉取/推送镜像
  • docker save/load镜像离线打包tar与导入
  • docker run:基于镜像启动容器
  • docker compose:多容器编排

Key References