mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 16:56:24 +02:00
18 lines
379 B
YAML
18 lines
379 B
YAML
|
|
services:
|
||
|
|
prometheus:
|
||
|
|
image: prom/prometheus:latest
|
||
|
|
ports:
|
||
|
|
- "9090:9090"
|
||
|
|
volumes:
|
||
|
|
- ./prometheus.yaml:/etc/prometheus/prometheus.yml:ro
|
||
|
|
depends_on:
|
||
|
|
- model-metrics
|
||
|
|
|
||
|
|
model-metrics:
|
||
|
|
image: python:3.11-slim
|
||
|
|
ports:
|
||
|
|
- "8080:8080"
|
||
|
|
volumes:
|
||
|
|
- ./metrics_server.py:/metrics_server.py:ro
|
||
|
|
command: python /metrics_server.py
|