17 lines
228 B
Makefile
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 .
|