diff --git a/Makefile b/Makefile index 4cdab2d..de521f0 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,14 @@ TAGOWNER = valicek1 TAGMAIN = repo-cloner TAGBASE= $(TAGOWNER)/$(TAGMAIN) - +# Mirrorer - root of repo mirror: docker build -t $(TAGBASE)-mirror . run-mirror: mirror docker run -v $(VOLUME):/data -it --rm $(TAGBASE)-mirror +# Creator - ./creator dir +creator: + docker build -t $(TAGBASE)-creator ./creator-image + diff --git a/creator/Dockerfile b/creator-image/Dockerfile similarity index 100% rename from creator/Dockerfile rename to creator-image/Dockerfile diff --git a/creator/build.sh b/creator-image/build.sh similarity index 100% rename from creator/build.sh rename to creator-image/build.sh diff --git a/creator/entrypoint-command b/creator-image/entrypoint-command similarity index 100% rename from creator/entrypoint-command rename to creator-image/entrypoint-command diff --git a/creator/run.sh b/creator-image/run.sh similarity index 100% rename from creator/run.sh rename to creator-image/run.sh