From 4912f54393724ac2f775c8b4fb0971900861007b Mon Sep 17 00:00:00 2001 From: Oliver Bristow Date: Tue, 26 Dec 2017 22:51:42 +0000 Subject: [PATCH] Fix pushing image to registry #893 --- pkg/utils/docker/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/utils/docker/push.go b/pkg/utils/docker/push.go index bb5eff8b..6cf68921 100644 --- a/pkg/utils/docker/push.go +++ b/pkg/utils/docker/push.go @@ -49,7 +49,7 @@ func (c *Push) PushImage(fullImageName string) error { // Let's setup the push and authentication options options := dockerlib.PushImageOptions{ - Name: parsedImage.Name(), + Name: fullImageName, Registry: parsedImage.Registry(), OutputStream: outputBuffer, }