Files
nexus/wiki/entities/Portainer.md
2026-04-17 08:38:12 +08:00

39 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: "Portainer"
type: entity
tags: [docker, container, management, ui]
sources: [家庭监控方案-prometheus-grafana-node-exporter-cadvisor-blackbox, portainer-docker-installation-guide, removing-old-portainer-container-volume]
last_updated: 2026-04-16
---
## Definition
Portainer 是 Docker 可视化管理工具,提供 Web 界面来管理 Docker 主机或 Docker Swarm 集群,支持容器、镜像、网络、卷等资源管理。
## Features
- **容器管理**:启动、停止、重启、删除容器
- **镜像管理**:查看、推送、拉取镜像
- **网络管理**:创建和管理 Docker 网络
- **卷管理**:创建和管理数据卷
- **监控功能**:部分监控和日志查看(不替代 Prometheus/Grafana
## Use Cases
- Docker 主机快速管理
- 开发/测试环境容器操作
- 轻量级 Docker UI
## Docker 部署
```bash
docker run -d -p 9000:9000 \
--name portainer \
--restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer-data:/data \
portainer/portainer-ce:latest
```
## Default Port
- 9000
## Connections
- [[Portainer]] ← manages ← [[Docker]]
- [[Portainer]] ← alternative_to ← [[Docker]] CLI