From 3f5efcb91afc2e6d013800132b92e4a6c297f662 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Mon, 19 Mar 2018 21:30:32 -0600 Subject: Initial commit of working files --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..902cb2f --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +.PHONY: build + +CONTAINERNAME=thornycrackers_scrapy_example +IMAGENAME=thornycrackers/scrapy_example + +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 + cp -r requirements.txt ./build + docker build -t $(IMAGENAME) ./build + +up: build ## Bring the container up + docker run -dP -v $(CURDIR):/app --name $(CONTAINERNAME) $(IMAGENAME) /bin/bash -c '/opt/entry.sh' + +down: ## Stop the container + docker stop $(CONTAINERNAME) || echo 'No container to stop' + +enter: ## Enter the running container + docker exec -it $(CONTAINERNAME) /bin/bash + +clean: down ## Remove the image and any stopped containers + docker rm $(CONTAINERNAME) || echo 'No container to remove' -- cgit v1.2.3