Files
nexus/wiki/entities/Portainer.md
2026-04-14 16:02:50 +08:00

34 lines
774 B
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: "Portainer"
type: entity
tags: [portainer, docker, container-management]
sources: [yong-docker-an-zhuang-portainer]
last_updated: 2026-04-14
---
## Definition
Portainer是Docker可视化容器管理平台提供Web界面管理容器、卷、网络和镜像。
## 核心特性
- Docker容器可视化管理的Web UI
- 支持容器、镜像、卷、网络管理
- 支持Edge Agent用于分布式集群管理
- 提供CE和BE版本
## Docker Compose部署
```yaml
services:
portainer:
container_name: portainer
image: portainer/portainer-ce:lts
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
ports:
- 9443:9443
- 8000:8000
```
## Connections
- [[Docker]] ← 管理对象 ← [[Portainer]]