mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
5169155f94
* Add instructions. * Squashed 'bridges/' content from commit 345e84a21 git-subtree-dir: bridges git-subtree-split: 345e84a2146b56628e9888c9f5e129cb40e868a9 * Remove bridges workspace file to avoid confusing Cargo. * Add some bridges primitives to Polkadot workspace. * Improve docs.
29 lines
666 B
YAML
29 lines
666 B
YAML
version: '3.5'
|
|
services:
|
|
prometheus-metrics:
|
|
image: prom/prometheus:v2.20.1
|
|
ports:
|
|
- "9090:9090"
|
|
|
|
grafana-dashboard:
|
|
image: grafana/grafana:7.1.3
|
|
environment:
|
|
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_ADMIN_PASS:-admin}
|
|
GF_SERVER_ROOT_URL: ${GRAFANA_SERVER_ROOT_URL}
|
|
GF_SERVER_DOMAIN: ${GRAFANA_SERVER_DOMAIN}
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- prometheus-metrics
|
|
|
|
grafana-matrix-notifier:
|
|
build:
|
|
context: .
|
|
dockerfile: ./monitoring/GrafanaMatrix.Dockerfile
|
|
volumes:
|
|
- ./monitoring/grafana-matrix:/config
|
|
ports:
|
|
- "4567:4567"
|
|
depends_on:
|
|
- grafana-dashboard
|