Merge pull request #895 from Code0x58/893-fix-image-push

Fix pushing of image to a private repository
This commit is contained in:
Charlie Drage
2018-01-04 09:11:59 -05:00
committed by GitHub
5 changed files with 51 additions and 3 deletions
+1 -1
View File
@@ -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,
}