forked from cerc-io/stack-orchestrator
Thomas E Lackey
b5c7ad114c
* Integrate grafana/prometheus with fixturenet-eth.
* Integrate grafana/prometheus with fixturenet-eth.
* Revert port change
* EOL
* EOL
* Simplify ipld-eth-server config.
Former-commit-id: c279bd49a4
22 lines
692 B
YAML
22 lines
692 B
YAML
version: "3.2"
|
|
services:
|
|
prometheus:
|
|
restart: always
|
|
image: prom/prometheus
|
|
depends_on:
|
|
fixturenet-eth-geth-1:
|
|
condition: service_healthy
|
|
volumes:
|
|
- ../config/fixturenet-eth-metrics/prometheus/etc:/etc/prometheus
|
|
ports:
|
|
- "9090"
|
|
grafana:
|
|
restart: always
|
|
image: grafana/grafana
|
|
volumes:
|
|
- ../config/fixturenet-eth-metrics/grafana/etc/provisioning/dashboards:/etc/grafana/provisioning/dashboards
|
|
- ../config/fixturenet-eth-metrics/grafana/etc/provisioning/datasources:/etc/grafana/provisioning/datasources
|
|
- ../config/fixturenet-eth-metrics/grafana/etc/dashboards:/etc/grafana/dashboards
|
|
ports:
|
|
- "3000"
|