diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fcfd70e --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +DOCKEROPTS=--no-cache + +.PHONY: image +image: + docker build -t dockermirror:5000/dpedu/plex $(DOCKEROPTS) . + +.PHONY: push +push: image + docker push dockermirror:5000/dpedu/plex