bd4322f56f
This updates lotus stats to use urfave instead of the golang flags package. This brings with it some common features from other lotus tools such as the use of the `FULLNODE_API_INFO` env and other parts of the lotus cli package. This also includes the latest dashboard.
27 lines
428 B
YAML
27 lines
428 B
YAML
version: '3'
|
|
|
|
services:
|
|
influxdb:
|
|
image: influxdb:latest
|
|
container_name: influxdb
|
|
ports:
|
|
- "18086:8086"
|
|
environment:
|
|
- INFLUXDB_DB=lotus
|
|
volumes:
|
|
- influxdb:/var/lib/influxdb
|
|
|
|
grafana:
|
|
image: grafana/grafana:latest
|
|
container_name: grafana
|
|
ports:
|
|
- "13000:3000"
|
|
links:
|
|
- influxdb
|
|
volumes:
|
|
- grafana:/var/lib/grafana
|
|
|
|
volumes:
|
|
influxdb:
|
|
grafana:
|