Files
get/Makefile
2026-08-18 05:41:28 +02:00

13 lines
122 B
Makefile

COMPOSE ?= docker compose
.PHONY: build up down
build:
$(COMPOSE) build
up:
$(COMPOSE) up -d
down:
$(COMPOSE) down