14 lines
246 B
YAML
14 lines
246 B
YAML
# Node Exporter - Metrics
|
|
# Port: 9100
|
|
# Prometheus hardware/OS metrics
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
node-exporter:
|
|
image: prom/node-exporter:latest
|
|
container_name: node-exporter
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9100:9100"
|