open-nomad/website/Makefile

15 lines
276 B
Makefile
Raw Normal View History

2017-03-28 03:37:59 +00:00
VERSION?="0.3.22"
2016-10-22 03:34:59 +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}
2016-10-29 20:44:34 +00:00
.PHONY: website