23 lines
462 B
YAML
23 lines
462 B
YAML
services:
|
|
misskey-exporter:
|
|
env_file:
|
|
- test.env
|
|
build: .
|
|
ports:
|
|
- "8080:8080"
|
|
|
|
prometheus:
|
|
image: prom/prometheus
|
|
volumes:
|
|
- ./prometheus.yml:/etc/prometheus/prometheus.yml
|
|
- ./rules.yaml:/etc/prometheus/rules.yaml
|
|
ports:
|
|
- "9090:9090"
|
|
grafana:
|
|
image: grafana/grafana-enterprise
|
|
ports:
|
|
- '3011:3000'
|
|
volumes:
|
|
- 'grafana_storage:/var/lib/grafana'
|
|
volumes:
|
|
grafana_storage: { } |