packer-cn/website/Makefile

15 lines
276 B
Makefile
Raw Normal View History

2017-03-27 17:44:39 -04:00
VERSION?="0.3.22"
2017-03-08 14:22:54 -05: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}
.PHONY: website