oncall-engine/docs/Makefile
2022-06-07 13:59:13 -06:00

11 lines
249 B
Makefile

IMAGE = grafana/docs-base:latest
CONTENT_PATH = /hugo/content/docs/amixr/latest
PORT = 3002:3002
.PHONY: pull
pull:
docker pull $(IMAGE)
.PHONY: docs
docs: pull
docker run -v '$(shell pwd)/sources:$(CONTENT_PATH):Z' -p $(PORT) --rm -it $(IMAGE)