mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-07 17:03:59 +01:00
16 lines
376 B
YAML
16 lines
376 B
YAML
---
|
|
volumes:
|
|
prometheus-data:
|
|
driver: local
|
|
services:
|
|
prometheus:
|
|
image: docker.io/prom/prometheus:v2.51.0
|
|
container_name: prometheus
|
|
ports:
|
|
- 9090:9090
|
|
command: "--config.file=/etc/prometheus/prometheus.yaml"
|
|
volumes:
|
|
- ./config/prometheus.yaml:/etc/prometheus/prometheus.yaml:ro
|
|
- ./data:/prometheus
|
|
restart: unless-stopped
|