Mateo's picture
run background
71d2e8d
raw
history blame contribute delete
227 Bytes
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