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