diff options
author | Kali Kaneko <kali@leap.se> | 2018-01-26 15:03:59 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-01-26 15:03:59 +0100 |
commit | 8614f298b140fa9d7f18fca13139ec40354cbaeb (patch) | |
tree | 14d04a0120cd7f23624d6da73a27c1ba63d83f1a | |
parent | 307389e1e43ca0e8a68fa6786ea1e0b43a0ad1b6 (diff) |
[pkg] add a makefile for uploading the docker image to registry
-rw-r--r-- | pkg/docker_bundle/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/docker_bundle/Makefile b/pkg/docker_bundle/Makefile new file mode 100644 index 00000000..0d6ce9fc --- /dev/null +++ b/pkg/docker_bundle/Makefile @@ -0,0 +1,6 @@ +build: + docker build -t 0xacab.org:4567/leap/docker/bitmask-bundler:latest . +push: + docker push 0xacab.org:4567/leap/docker/bitmask-bundler:latest +login: + docker login 0xacab.org:4567 |