From 2b007a5a500b635ddcfe4b9a512777f3d21fa6b6 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 3 Feb 2021 14:29:24 -0700 Subject: Initial commit of project --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..aa51099 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +.PHONY: build + +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 Docker image + docker-compose -p slacky build + +up: build ## Bring the container up + docker-compose -p slacky up -d + +down: ## Stop the container + docker-compose -p slacky stop + +enter: ## Enter the running container + docker-compose -p slacky exec backend /bin/bash + +clean: down ## Remove stoped containers + docker-compose -p slacky rm -f -- cgit v1.2.3