-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
27 lines (20 loc) · 779 Bytes
/
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
# Thanks: https://gist.github.com/mpneuried/0594963ad38e68917ef189b4e6a269db
.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
# Determine whether to use "docker-compose" or "docker compose"
DOCKER_COMPOSE := $(shell which docker-compose 2>/dev/null)
ifeq ($(DOCKER_COMPOSE),)
DOCKER_COMPOSE := $(shell which docker 2>/dev/null)
PREFIX := compose
else
PREFIX :=
endif
# DOCKER TASKS
up: ## Runs the containers in detached mode with default config
$(DOCKER_COMPOSE) $(PREFIX) up -d --build
clean: ## Stops and removes all containers
$(DOCKER_COMPOSE) $(PREFIX) down
logs: ## View the logs from the containers
$(DOCKER_COMPOSE) $(PREFIX) logs -f