mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
17 lines
379 B
YAML
17 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
|