mirror of https://github.com/hashicorp/consul
bump middleman-hashicorp to 0.3.40 and exclude guide rendering (#5847)
* bump middleman-hashicorp to 0.3.40 and exclude guide rendering * add notes to Makefile for volume mounts hack PR#5847 * make note of the PR number in the commentpull/5871/head
parent
c8dc8049c4
commit
f452de1c50
|
@ -1,4 +1,8 @@
|
||||||
VERSION?="0.3.35"
|
VERSION?="0.3.40"
|
||||||
|
|
||||||
|
# The volume mounting steps are a way to exclude all the consul docs from being built
|
||||||
|
# in the Consul site build process while still including the index.html page that points
|
||||||
|
# users to learn.hashicorp.com. See PR#5847.
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@echo "==> Starting build in Docker..."
|
@echo "==> Starting build in Docker..."
|
||||||
|
@ -7,6 +11,8 @@ build:
|
||||||
--rm \
|
--rm \
|
||||||
--tty \
|
--tty \
|
||||||
--volume "$(shell pwd):/website" \
|
--volume "$(shell pwd):/website" \
|
||||||
|
--volume "/website/source/docs/guides" \
|
||||||
|
--volume "$(shell pwd)/source/docs/guides/index.html.md:/website/source/docs/guides/index.html.md" \
|
||||||
-e "ENV=production" \
|
-e "ENV=production" \
|
||||||
hashicorp/middleman-hashicorp:${VERSION} \
|
hashicorp/middleman-hashicorp:${VERSION} \
|
||||||
bundle exec middleman build --verbose --clean
|
bundle exec middleman build --verbose --clean
|
||||||
|
@ -20,6 +26,8 @@ website:
|
||||||
--publish "4567:4567" \
|
--publish "4567:4567" \
|
||||||
--publish "35729:35729" \
|
--publish "35729:35729" \
|
||||||
--volume "$(shell pwd):/website" \
|
--volume "$(shell pwd):/website" \
|
||||||
|
--volume "/website/source/docs/guides" \
|
||||||
|
--volume "$(shell pwd)/source/docs/guides/index.html.md:/website/source/docs/guides/index.html.md" \
|
||||||
hashicorp/middleman-hashicorp:${VERSION}
|
hashicorp/middleman-hashicorp:${VERSION}
|
||||||
|
|
||||||
.PHONY: build website
|
.PHONY: build website
|
||||||
|
|
Loading…
Reference in New Issue