- Add Grafana dashboard service (port 3000) - Add Prometheus time-series database (port 9090) - Add PVE Exporter for Proxmox metrics (port 9221) - Deploy on VM 101 (monitoring-docker) at 192.168.2.114 - Configure scraping for Proxmox node 192.168.2.100 - Add docker-compose configurations for all services - Add template files for sensitive credentials (pve.yml.template, .env.template) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
332 B
YAML
15 lines
332 B
YAML
version: '3.8'
|
|
services:
|
|
pve-exporter:
|
|
image: prompve/prometheus-pve-exporter:latest
|
|
container_name: pve-exporter
|
|
ports:
|
|
- "9221:9221"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${PVE_CONFIG_PATH}:/etc/prometheus/pve.yml:ro
|
|
env_file:
|
|
- .env
|
|
labels:
|
|
org.label-schema.group: "monitoring"
|