oncall-engine/docs/Makefile
Jack Baldry 591db52ab8
Support whitespace in mount source directory
Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
2022-06-07 17:10:24 +01: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)