# import config. # You can change the default config with `make cnf="config_special.env" build` # cnf ?= config.env # include $(cnf) # export $(shell sed 's/=.*//' $(cnf)) PORT=5000 # import deploy config # You can change the default deploy config with `make cnf="deploy_special.env" release` # dpl ?= deploy.env # include $(dpl) # export $(shell sed 's/=.*//' $(dpl)) APP_NAME=psla # HELP # This will output the help for each task # thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html .PHONY: help help: ## This help. @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) .DEFAULT_GOAL := help # DOCKER TASKS # Build the container build: ## Build the container docker build -t $(APP_NAME) . build-nc: ## Build the container without caching docker build --no-cache -t $(APP_NAME) . run: ## Run container on port configured in `config.env` # docker run --rm --env-file=./config.env -p=$(PORT):$(PORT) --name="$(APP_NAME)" $(APP_NAME) docker run --rm -p=$(PORT):$(PORT) --name="$(APP_NAME)" -v `pwd`/logs:/logs $(APP_NAME) up: build run ## Run container on port configured in `config.env` (Alias to run) dash: build docker run --rm -p=8050:8050 --name="$(APP_NAME)" -v `pwd`/logs:/logs $(APP_NAME) stop: ## Stop and remove a running container docker stop $(APP_NAME); docker rm $(APP_NAME)