11 lines
127 B
Makefile

all:
docker compose up --build
re: clean all
clean:
docker system prune -af
docker volume prune -af
.PHONY: clean re all