diff --git a/Makefile b/Makefile index f890986..8cfbc8b 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,9 @@ TAGOWNER = valicek1 TAGMAIN = repo-cloner TAGBASE= $(TAGOWNER)/$(TAGMAIN) + +buildall: mirror creator launcher + # Mirrorer - root of repo mirror: docker build -t $(TAGBASE)-mirror . @@ -26,5 +29,13 @@ launcher: run-launcher: launcher docker run -v /var/run/docker.sock:/var/run/docker.sock -it --rm $(TAGBASE)-launcher +run-launcher-detached: launcher + docker run -v /var/run/docker.sock:/var/run/docker.sock -itd --rm $(TAGBASE)-launcher + # wizzard wizzard: mirror run-creator + +# CI Detector +detector: + docker build -t cloner-mirror-dev . + docker run -it --rm -v tester-gitt:/data cloner-mirror-dev