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