Files
get/Makefile
2026-08-17 20:53:20 +02:00

13 lines
122 B
Makefile

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