grafana/devenv/docker/blocks/loki/docker-compose.yaml

13 lines
361 B
YAML
Raw Normal View History

2019-01-29 05:14:26 -06:00
loki:
image: grafana/loki:latest
2019-01-29 05:14:26 -06:00
ports:
- "3100:3100"
loki-data:
build: docker/blocks/loki/data
command: node /home/node/data.js http://loki:3100
depends_on:
- loki
# when loki starts, there might be some time while it is not
# accepting requests, so we allow data.js to restart on failure.
restart: "on-failure"