remove Makefile, some PR added it and I didn't notice; we don't use it.

pull/64/head
Ricardo Pardini 2020-11-09 11:26:29 +01:00
parent 313f5ea203
commit 6bf3974ade
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
clean:
rm -rf docker_mirror_cache/*
build:
docker build --tag docker-registry-proxy .
start:
docker run --rm --name=docker-registry-proxy -it \
-p 0.0.0.0:3128:3128 \
-p 0.0.0.0:8081:8081 \
-e DEBUG=true \
-v $(dir $(abspath $(firstword $(MAKEFILE_LIST))))/docker_mirror_cache:/docker_mirror_cache \
-v $(dir $(abspath $(firstword $(MAKEFILE_LIST))))/docker_mirror_certs:/ca \
docker-registry-proxy
stop:
docker stop docker-registry-proxy
test: build start
.INTERMEDIATE: clean stop