aboutsummaryrefslogtreecommitdiff
path: root/dns-manage/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dns-manage/Makefile')
-rw-r--r--dns-manage/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/dns-manage/Makefile b/dns-manage/Makefile
deleted file mode 100644
index da1d5f4..0000000
--- a/dns-manage/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
1IMAGE=docker.crute.me/dns-manage:latest
2
3all:
4 docker pull alpine:latest
5 docker build -t $(IMAGE) .
6
7all-no-cache:
8 docker build --no-cache -t $(IMAGE) .
9
10run:
11 docker run -d --net=host \
12 --cap-add=NET_ADMIN \
13 --name=bird \
14 -v $PWD/bird:/srv/bird \
15 $(IMAGE)
16
17publish:
18 docker push $(IMAGE)