open-consul/website/Makefile

15 lines
275 B
Makefile
Raw Normal View History

VERSION?="0.3.4"
2015-10-09 22:29:08 +00:00
website:
@echo "==> Starting website in Docker..."
@docker run \
--interactive \
--rm \
--tty \
--publish "4567:4567" \
--publish "35729:35729" \
--volume "$(shell pwd):/website" \
hashicorp/middleman-hashicorp:${VERSION}
2015-10-09 22:29:08 +00:00
.PHONY: website