2018-02-10 00:11:48 +01:00
|
|
|
default: buildall
|
|
|
|
|
|
|
|
VOLUME ?= cloner-test
|
2018-02-10 00:14:39 +01:00
|
|
|
TAGOWNER = valicek1
|
|
|
|
TAGMAIN = repo-cloner
|
|
|
|
TAGBASE= $(TAGOWNER)/$(TAGMAIN)
|
2018-02-10 00:11:48 +01:00
|
|
|
|
2018-02-10 00:19:17 +01:00
|
|
|
# Mirrorer - root of repo
|
2018-02-10 00:11:48 +01:00
|
|
|
mirror:
|
2018-02-10 00:14:39 +01:00
|
|
|
docker build -t $(TAGBASE)-mirror .
|
2018-02-10 00:11:48 +01:00
|
|
|
|
|
|
|
run-mirror: mirror
|
2018-02-10 00:14:39 +01:00
|
|
|
docker run -v $(VOLUME):/data -it --rm $(TAGBASE)-mirror
|
2018-02-10 00:11:48 +01:00
|
|
|
|
2018-02-10 00:19:17 +01:00
|
|
|
# Creator - ./creator dir
|
|
|
|
creator:
|
|
|
|
docker build -t $(TAGBASE)-creator ./creator-image
|
|
|
|
|