aboutsummaryrefslogtreecommitdiff
path: root/ddns/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ddns/Makefile')
-rw-r--r--ddns/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/ddns/Makefile b/ddns/Makefile
deleted file mode 100644
index 1163601..0000000
--- a/ddns/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
1IMAGE=docker.crute.me/ddns:latest
2
3all:
4 docker build -t $(IMAGE) .
5
6all-no-cache:
7 docker build --no-cache -t $(IMAGE) .
8
9run:
10 docker run -d \
11 -p 9000:9000 \
12 $(IMAGE)
13
14publish:
15 docker push $(IMAGE)