askar-website/Makefile
2024-07-17 22:49:32 +02:00

12 lines
135 B
Makefile

DOCKER ?= docker
COMPOSE ?= docker compose
dev-run:
$(COMPOSE) up
dev-stop:
$(COMPOSE) down
dev-clean:
$(COMPOSE) down --volumes