This repository has been archived on 2025-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
trans.kanel.ovh/Makefile

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