0b2718a4af
Simple chain stats tool for graphing the chain using influxdb and grafana. License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
27 lines
426 B
YAML
27 lines
426 B
YAML
version: '3'
|
|
|
|
services:
|
|
influxdb:
|
|
image: influxdb:latest
|
|
container_name: influxdb
|
|
environment:
|
|
- INFLUXDB_DB=lotus
|
|
ports:
|
|
- "8086:8086"
|
|
volumes:
|
|
- influxdb:/var/lib/influxdb
|
|
|
|
grafana:
|
|
image: grafana/grafana:latest
|
|
container_name: grafana
|
|
ports:
|
|
- "3000:3000"
|
|
links:
|
|
- influxdb
|
|
volumes:
|
|
- grafana:/var/lib/grafana
|
|
|
|
volumes:
|
|
influxdb:
|
|
grafana:
|