-
Notifications
You must be signed in to change notification settings - Fork 20
/
Makefile
72 lines (51 loc) · 2.46 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.DEFAULT_GOAL:=help
SHELL:=/usr/bin/env bash
ifeq ($(APP_ENV),)
$(error -- APP_ENV needs to be set, eg. APP_ENV=dev make)
else ifeq ($(filter $(APP_ENV),dev stage prod),)
$(error -- APP_ENV needs to be set to either of dev, stage, prod)
endif
ifeq ($(APP_ENV),dev)
COMPOSE_FILE=compose.dev.yml
endif
ifeq ($(APP_ENV),$(filter $(APP_ENV),stage prod))
COMPOSE_FILE=compose.stage_prod.yml
ifeq ($(TLS_EMAIL),)
$(error -- TLS_EMAIL needs to be set, eg. export TLS_EMAIL=somebody@email.com)
endif
ifeq ($(HOST_NAME),)
$(error -- HOST_NAME needs to be set, eg. export HOST_NAME=test.nepalmap.org)
endif
endif
# Pre-requisite ENVIRONMENT VARIABLES setup
export HOST_USER_ID:=$(shell id -u)
export HOST_GROUP_ID:=$(shell id -g)
DOCKER_COMPOSE:=docker-compose -f compose.common.yml -f $(COMPOSE_FILE)
# Targets for starting, stopping etc.
.PHONY: build start stop tail-logs clean
help: ## Display this help
$(info)
@awk 'BEGIN {FS = ":.*##"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-10s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST)
build: ## (Force) Build the docker images (automatically run by `make start`)
$(DOCKER_COMPOSE) build
start: build ## Start all the project service containers daemonised (Logs are tailed by a separate command)
$(DOCKER_COMPOSE) up -d
stop: ## Stop all the project service containers
$(DOCKER_COMPOSE) down
stop-clean: ## Stop all the project service containers, cleanup project images, dangling/orphaned volumes
$(DOCKER_COMPOSE) down --rmi local --volumes --remove-orphans
tail-logs: ## Tail the logs for the project service containers (Filtered via SERVICE_NAME, eg. make tail-logs SERVICE_NAME=worker)
$(if $(SERVICE_NAME), $(info -- Tailing logs for $(SERVICE_NAME)), $(info -- Tailing all logs, SERVICE_NAME not set.))
$(DOCKER_COMPOSE) logs -f $(SERVICE_NAME)
# Targets for one-off tasks
.PHONY: run-web web-bash
DOCKER_COMPOSE_RUN_WEB:=$(DOCKER_COMPOSE) run --rm web
run-web: ## Run a one-off command in a new web service container. Specify using CMD (eg. make run-web CMD=python manage.py collectstatic)
$(if $(CMD), $(DOCKER_COMPOSE_RUN_WEB) $(CMD), $(error -- CMD must be set))
bash-web: CMD=/bin/bash
bash-web: run-web ## Spawn a bash shell for web service
# Cleanup etc.
.PHONY: clean
prune: ## Cleanup dangling/orphaned docker resources as well assets folder. Recommended to run every now and then to free up disk space etc.
docker system prune --volumes -f
find static/. -maxdepth 1 \( -not -name '.keep' -not -name '.' \) -print0 | xargs -0 rm -rf