From 7a7dfb139dcb5986533dfe9af7721b882023d925 Mon Sep 17 00:00:00 2001 From: "Stephen McQuay (smcquay)" Date: Fri, 9 Mar 2018 10:15:19 -0800 Subject: [PATCH] Adds docker push --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b263e9e..76b6434 100644 --- a/Makefile +++ b/Makefile @@ -44,3 +44,9 @@ docker-build: bin/hw bin/hwc bin/hwl docker build -f cmd/hw/Dockerfile . -t smcquay/hw:$(VERSION)$(V_DIRTY) docker build -f cmd/hwc/Dockerfile . -t smcquay/hwc:$(VERSION)$(V_DIRTY) docker build -f cmd/hwl/Dockerfile . -t smcquay/hwl:$(VERSION)$(V_DIRTY) + +.PHONY: docker-push +docker-push: + docker push smcquay/hw:$(VERSION)$(V_DIRTY) + docker push smcquay/hwc:$(VERSION)$(V_DIRTY) + docker push smcquay/hwl:$(VERSION)$(V_DIRTY)