2016-05-25 14:30:01 -04:00
|
|
|
.PHONY: default docs docs-build docs-shell test
|
2015-06-07 23:07:20 -04:00
|
|
|
|
|
|
|
# to allow `make DOCSDIR=docs docs-shell` (to create a bind mount in docs)
|
|
|
|
DOCS_MOUNT := $(if $(DOCSDIR),-v $(CURDIR)/$(DOCSDIR):/$(DOCSDIR))
|
|
|
|
|
|
|
|
# to allow `make DOCSPORT=9000 docs`
|
|
|
|
DOCSPORT := 8000
|
|
|
|
|
|
|
|
# Get the IP ADDRESS
|
|
|
|
DOCKER_IP=$(shell python -c "import urlparse ; print urlparse.urlparse('$(DOCKER_HOST)').hostname or ''")
|
|
|
|
HUGO_BASE_URL=$(shell test -z "$(DOCKER_IP)" && echo localhost || echo "$(DOCKER_IP)")
|
|
|
|
HUGO_BIND_IP=0.0.0.0
|
|
|
|
|
|
|
|
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
|
2016-05-22 11:30:41 -04:00
|
|
|
GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g")
|
|
|
|
DOCKER_DOCS_IMAGE := docker-docs$(if $(GIT_BRANCH_CLEAN),:$(GIT_BRANCH_CLEAN))
|
2015-06-07 23:07:20 -04:00
|
|
|
|
|
|
|
DOCKER_RUN_DOCS := docker run --rm -it $(DOCS_MOUNT) -e AWS_S3_BUCKET -e NOCACHE
|
|
|
|
|
|
|
|
# for some docs workarounds (see below in "docs-build" target)
|
|
|
|
GITCOMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
|
|
|
|
|
|
|
|
default: docs
|
|
|
|
|
|
|
|
docs: docs-build
|
|
|
|
$(DOCKER_RUN_DOCS) -p $(if $(DOCSPORT),$(DOCSPORT):)8000 -e DOCKERHOST "$(DOCKER_DOCS_IMAGE)" hugo server --port=$(DOCSPORT) --baseUrl=$(HUGO_BASE_URL) --bind=$(HUGO_BIND_IP)
|
|
|
|
|
|
|
|
docs-draft: docs-build
|
|
|
|
$(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)
|
|
|
|
|
|
|
|
|
|
|
|
docs-shell: docs-build
|
|
|
|
$(DOCKER_RUN_DOCS) -p $(if $(DOCSPORT),$(DOCSPORT):)8000 "$(DOCKER_DOCS_IMAGE)" bash
|
|
|
|
|
2016-05-25 14:30:01 -04:00
|
|
|
test: docs-build
|
|
|
|
$(DOCKER_RUN_DOCS) "$(DOCKER_DOCS_IMAGE)"
|
2015-06-07 23:07:20 -04:00
|
|
|
|
|
|
|
docs-build:
|
|
|
|
docker build -t "$(DOCKER_DOCS_IMAGE)" .
|