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"
|