lotus/cmd/lotus-stats/docker-compose.yml
Travis Person bd4322f56f Update lotus-stats with a richer cli
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.
2020-11-04 18:06:17 +00:00

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: