# Default target
.PHONY: all
all: start

.PHONY: start
start:
	docker compose up -d


.PHONY: stop
stop:
	docker compose down
