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