Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/docs/Makefile

17 lines
471 B

IMAGE = grafana/docs-base:latest
.PHONY: pull
pull:
docker pull ${IMAGE}
.PHONY: docs
docs: pull
docker run --rm -it -v ${PWD}/sources:/hugo/content/docs/loki/latest -p 3002:3002 $(IMAGE)
.PHONY: docs-next
docs-next: pull
docker run --rm -it -v ${PWD}/sources:/hugo/content/docs/loki/next -p 3002:3002 $(IMAGE)
.PHONY: docs-test
docs-test: pull
docker run --rm -it -v ${PWD}/sources:/hugo/content/docs/loki/latest -p 3002:3002 $(IMAGE) /bin/bash -c 'make prod'