github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/website/Makefile (about)

     1  VERSION?="0.3.4"
     2  
     3  website:
     4  	@echo "==> Starting website in Docker..."
     5  	@docker run \
     6  	  --interactive \
     7  	  --rm \
     8  		--tty \
     9  		--publish "4567:4567" \
    10  		--publish "35729:35729" \
    11  		--volume "$(shell pwd):/website" \
    12  		hashicorp/middleman-hashicorp:${VERSION}
    13  
    14  .PHONY: website