19 lines
398 B
YAML
19 lines
398 B
YAML
services:
|
|
prometheus:
|
|
image: prom/prometheus:v3.13.2
|
|
container_name: prometheus
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
- "9090:9090"
|
|
|
|
volumes:
|
|
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
|
|
- prometheus_data:/prometheus
|
|
|
|
command:
|
|
- "--config.file=/etc/prometheus/prometheus.yml"
|
|
- "--storage.tsdb.path=/prometheus"
|
|
|
|
volumes:
|
|
prometheus_data: |