-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
32 lines (23 loc) · 1.7 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
.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
up: ## bring up everything in the right order
docker compose -f docker-compose-deps.yml -f docker-compose-ss.yml -f docker-compose.yml -f docker-compose-app.yml build
docker compose -f docker-compose-deps.yml -f docker-compose-ss.yml -f docker-compose.yml -f docker-compose-app.yml up -d
down: ## bring down everything in the right order
docker compose -f docker-compose-deps.yml -f docker-compose-ss.yml -f docker-compose.yml -f docker-compose-app.yml down
build: ## build docker image
docker compose -f docker-compose-deps.yml -f docker-compose-ss.yml -f docker-compose.yml -f docker-compose-app.yml build
###############################################################################
################################# Local Dev #################################
###############################################################################
deps-up: ## bring up all dependencies service and let them run in background
COMPOSE_FILE=docker-compose-deps.yml docker compose build
COMPOSE_FILE=docker-compose-deps.yml docker compose up -d
deps-down: ## bring down all dependencies service, useful when we want to nuke their data dir
COMPOSE_FILE=docker-compose-deps.yml docker compose down
###############################################################################
########################## Interactive Utils #################################
###############################################################################
psql: ## open interactive psql shell
COMPOSE_FILE=docker-compose-deps.yml docker compose exec postgres psql -h 127.0.0.1 -U postgres