mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Docs: What's new for 7.2 initial draft * Updated content and images * Updated with a top toc / links section
11 lines
339 B
Makefile
11 lines
339 B
Makefile
.PHONY: docs docs-test
|
|
|
|
IMAGE = grafana/docs-base:latest
|
|
|
|
docs:
|
|
docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest -p 3002:3002 --rm -it $(IMAGE) /bin/bash -c 'make server'
|
|
|
|
docs-test:
|
|
docker pull ${IMAGE}
|
|
docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest --rm -it $(IMAGE) /bin/bash -c 'make prod'
|