Makefile 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .PHONY: all default docs docs-build docs-shell shell test
  2. # to allow `make DOCSDIR=1 docs-shell` (to create a bind mount in docs)
  3. DOCS_MOUNT := $(if $(DOCSDIR),-v $(CURDIR):/docs/content/grafana/)
  4. # to allow `make DOCSPORT=9000 docs`
  5. DOCSPORT := 3004
  6. # Get the IP ADDRESS
  7. DOCKER_IP=$(shell python -c "import urlparse ; print urlparse.urlparse('$(DOCKER_HOST)').hostname or ''")
  8. HUGO_BASE_URL=$(shell test -z "$(DOCKER_IP)" && echo localhost || echo "$(DOCKER_IP)")
  9. HUGO_BIND_IP=0.0.0.0
  10. GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
  11. GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g")
  12. DOCKER_DOCS_IMAGE := grafana/grafana-docs
  13. DOCKER_RUN_DOCS := docker run --rm -it $(DOCS_MOUNT) -e AWS_S3_BUCKET -e NOCACHE
  14. SOURCES_HOST_DIR := "$(shell pwd)/sources"
  15. # for some docs workarounds (see below in "docs-build" target)
  16. GITCOMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
  17. default: docs
  18. docs: docs-build
  19. $(DOCKER_RUN_DOCS) -p 3004:3004 -p 3005:3005 -e DOCKERHOST "$(DOCKER_DOCS_IMAGE)" /bin/bash -c "grunt && grunt connect --port=3004"
  20. docs-watch: docs-build
  21. $(DOCKER_RUN_DOCS) -p 3004:3004 -p 3005:3005 -v $(SOURCES_HOST_DIR):/site/content -e DOCKERHOST "$(DOCKER_DOCS_IMAGE)" /bin/bash -c "grunt --env=dev-docs && grunt connect --port=3004 & grunt watch --port=3004 --env=dev-docs"
  22. docs-watch-mac: docs-build
  23. $(DOCKER_RUN_DOCS) -p 3004:3004 -p 3005:3005 -v $(SOURCES_HOST_DIR):/site/content -e DOCKERHOST "$(DOCKER_DOCS_IMAGE)" /bin/bash -c "grunt --env=dev-docs-mac && grunt connect --port=3004 & grunt watch --port=3004 --env=dev-docs-mac"
  24. publish: docs-build
  25. $(DOCKER_RUN_DOCS) "$(DOCKER_DOCS_IMAGE)" /bin/bash -c "./publish.sh staging-docs v3.1"
  26. publish-prod: docs-build
  27. $(DOCKER_RUN_DOCS) "$(DOCKER_DOCS_IMAGE)" /bin/bash -c "./publish.sh prod-docs root"
  28. docs-draft: docs-build
  29. $(DOCKER_RUN_DOCS) -p $(if $(DOCSPORT),$(DOCSPORT):)8000 -e DOCKERHOST "$(DOCKER_DOCS_IMAGE)" hugo server --buildDrafts="true" --port=$(DOCSPORT) --baseUrl=$(HUGO_BASE_URL) --bind=$(HUGO_BIND_IP)
  30. docs-shell: docs-build
  31. $(DOCKER_RUN_DOCS) -p $(if $(DOCSPORT),$(DOCSPORT):)8000 "$(DOCKER_DOCS_IMAGE)" bash
  32. test: docs-build
  33. $(DOCKER_RUN_DOCS) -p $(if $(DOCSPORT),$(DOCSPORT):)8000 "$(DOCKER_DOCS_IMAGE)"
  34. docs-build:
  35. docker build -t "$(DOCKER_DOCS_IMAGE)" .