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

32 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Docker"
type: entity
tags: []
last_updated: 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
- [[如何在Ubuntu Server安装 Docker & Docker Compose]] — Docker + Docker Compose 安装
- [[如何传输Docker images 并且在另一个Docker安装]] — 镜像离线迁移save/load
- [[用Docker安装Portainer]] — 容器管理面板
- [[用Docker安装Jellyfin]] — 媒体服务器
- [[用Docker安装Homarr]] — 个人导航仪表盘
- [[用Docker安装Apache Superset]] — BI 可视化平台
- [[如何删除旧的废弃的 Docker Container + Volume]] — 容器清理