fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-13 14:45:35 +02:00
parent 5a2a5f1248
commit dd1939d7b2
2 changed files with 6 additions and 1 deletions

View File

@ -132,4 +132,9 @@ export class DockerImage {
// TODO: Compare image digists before and after
return true;
}
// get stuff
public async getVersion() {
return this.Labels.version;
}
}

View File

@ -77,7 +77,7 @@ export class DockerSecret {
// get things
public getVersion() {
public async getVersion() {
return this.Spec.Labels.version;
}
}