mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-27 11:14:59 +00:00
17 lines
405 B
YAML
17 lines
405 B
YAML
services:
|
|
prometheus:
|
|
image: ${PROMETHEUS_IMAGE:-prom/prometheus:latest}
|
|
ports:
|
|
- "9090:9090"
|
|
volumes:
|
|
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
|
|
|
|
grafana:
|
|
image: ${GRAFANA_IMAGE:-grafana/grafana:latest}
|
|
ports:
|
|
- "3001:3000"
|
|
environment:
|
|
GF_SECURITY_ADMIN_USER: admin
|
|
GF_SECURITY_ADMIN_PASSWORD: admin
|
|
depends_on:
|
|
- prometheus
|