build:
	@docker compose build --no-cache

run: stop 
	@docker compose up -d --remove-orphans

stop:
	@docker compose down

.DEFAULT_GOAL=run
