aboutsummaryrefslogtreecommitdiff
path: root/bird/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bird/Makefile')
-rw-r--r--bird/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/bird/Makefile b/bird/Makefile
deleted file mode 100644
index e96c7b7..0000000
--- a/bird/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
1IMAGE=docker.crute.me/bird: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 --net=host \
11 --cap-add=NET_ADMIN \
12 --name=bird \
13 -v $PWD/bird:/srv/bird \
14 $(IMAGE)
15
16publish:
17 docker push $(IMAGE)