2020-10-30 04:22:01 -05:00
|
|
|
.PHONY: docs docs-no-pull docs-test
|
2019-12-18 06:26:47 -06:00
|
|
|
|
2020-10-30 04:22:01 -05:00
|
|
|
IMAGE = grafana/grafana-docs-dev:latest
|
2020-01-14 09:26:00 -06:00
|
|
|
|
2020-10-30 04:22:01 -05:00
|
|
|
docs:
|
2020-10-22 02:57:56 -05:00
|
|
|
docker pull $(IMAGE)
|
2020-10-30 04:22:01 -05:00
|
|
|
docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest -p 3002:3002 --rm -it $(IMAGE)
|
2020-11-09 14:26:49 -06:00
|
|
|
|
2020-10-30 04:22:01 -05:00
|
|
|
docs-no-pull:
|
|
|
|
docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest -p 3002:3002 --rm -it $(IMAGE)
|
2020-10-22 02:57:56 -05:00
|
|
|
|
2020-10-30 04:22:01 -05:00
|
|
|
docs-test:
|
2020-10-22 02:57:56 -05:00
|
|
|
docker pull $(IMAGE)
|
2020-11-09 14:26:49 -06:00
|
|
|
docker run -v $(shell pwd)/sources:/hugo/content/docs/grafana/latest --rm -it $(IMAGE) /bin/bash -c 'make prod'
|