fix(core): update

This commit is contained in:
Philipp Kunz 2019-08-16 21:07:59 +02:00
parent 846ea9997e
commit 5815f9b202
2 changed files with 4 additions and 8 deletions

View File

@ -112,14 +112,6 @@ export class DockerImage {
});
}
/**
* returns a boolean wether the image has a upstream image
*/
public isUpstreamImage(): boolean {
// TODO: implement isUpastreamImage
return this.RepoTags.length > 0;
}
public tagImage(newTag) {}
/**

View File

@ -56,4 +56,8 @@ export class DockerService {
this.dockerHost = dockerHostArg;
Object.assign(this, serviceObject);
}
update() {
// TODO: implemnt updating service
}
}