UrlsController/prometheus/docker-compose-prometheus.yml

21 lines
404 B
YAML

version: '3.3'
services:
prometheus:
image: 'prom/prometheus:latest'
container_name: prometheus
ports:
- '9090:9090'
command: '--config.file=/etc/prometheus/config.yml'
volumes:
- './prometheus.yml:/etc/prometheus/config.yml'
grafana:
image: 'grafana/grafana:latest'
container_name: grafana
ports:
- '3000:3000'
depends_on:
- prometheus