From 7686d0ca2e637fd004e4f716f0ba10bbf9a24b88 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Mon, 12 Nov 2018 19:19:50 +0000 Subject: Initial commit --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2d5833e --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +.PHONY: build + +CONTAINERNAME=thornycrackers_helloworld +IMAGENAME=thornycrackers/helloworld + +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + +build: ## Build the image + docker build -t $(IMAGENAME) . + +up: build ## Run the container + docker run -dP --name $(CONTAINERNAME) $(IMAGENAME) + +down: ## Stop the container + docker stop $(CONTAINERNAME) 2> /dev/null || echo 'No container to stop' + +clean: down ## Remove the container + docker rm $(CONTAINERNAME) 2> /dev/null || echo 'No container to remove' + +push: ## Push the container to dockerhub + docker push $(IMAGENAME) -- cgit v1.2.3