4def895
71d2e8d
4def895
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | COMPOSE := docker compose
.PHONY: run run-bg stop down logs build ps
run:
$(COMPOSE) up --build -d
stop:
$(COMPOSE) stop
down:
$(COMPOSE) down
logs:
$(COMPOSE) logs -f app
build:
$(COMPOSE) build
ps:
$(COMPOSE) ps
|