Files
hemhub/Makefile
Urban Modig aef0a4c98f Iteration 0
2025-10-04 21:21:41 +02:00

17 lines
228 B
Makefile

.PHONY: run stop logs build image
run:
docker compose up -d
stop:
docker compose down -v
logs:
docker compose logs -f api
build:
./gradlew clean test bootJar
image:
docker build -t registry.local:5000/hemhub/api:dev .