4a1fa67f26
I apologize in advance for the rather long PR, but unfortunately there is not an easy way to break this up into smaller chunks. This separates the agent configuration into smaller, more consumable pieces just like the job specification.
15 lines
275 B
Makefile
15 lines
275 B
Makefile
VERSION?="0.3.5"
|
|
|
|
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
|