2023-05-15 17:52:31 +02:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
prometheus:
|
|
|
|
image: 'prom/prometheus:latest'
|
2023-07-27 17:27:48 +02:00
|
|
|
container_name: prometheus
|
2023-05-15 17:52:31 +02:00
|
|
|
ports:
|
|
|
|
- '9090:9090'
|
|
|
|
command: '--config.file=/etc/prometheus/config.yml'
|
|
|
|
volumes:
|
|
|
|
- './prometheus.yml:/etc/prometheus/config.yml'
|
|
|
|
|
|
|
|
grafana:
|
|
|
|
image: 'grafana/grafana:latest'
|
2023-07-27 17:27:48 +02:00
|
|
|
container_name: grafana
|
2023-05-15 17:52:31 +02:00
|
|
|
ports:
|
|
|
|
- '3000:3000'
|
|
|
|
depends_on:
|
|
|
|
- prometheus
|