From 2c8b17f0297e8534bd944e83e8879ba536bf51eb Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 15 Aug 2019 19:02:43 +0200 Subject: [PATCH] fix(core): update --- ts/docker.classes.image.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ts/docker.classes.image.ts b/ts/docker.classes.image.ts index 29e52e9..ffe5b0d 100644 --- a/ts/docker.classes.image.ts +++ b/ts/docker.classes.image.ts @@ -38,7 +38,6 @@ export class DockerImage { const originTag = `${creationObject.imageUrl}:${creationObject.tag}`; console.log(originTag) const image = await DockerImage.findImageByName(dockerHostArg, originTag); - image.tagImage(originTag); return image; } else { plugins.smartlog.defaultLogger.log('error', `Failed at the attempt of creating a new image`); @@ -68,7 +67,6 @@ export class DockerImage { /** * the tags for an image */ - public tags: string[]; public Containers: number; public Created: number; public Id: string;