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