added some log messages for debugging

This commit is contained in:
Philipp Kunz 2016-06-07 13:40:42 +02:00
parent 215d0b97bb
commit ba047ed586
2 changed files with 5 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -188,7 +188,9 @@ export class Dockerfile {
bashBare("docker push " + this.releaseTag);
}
getId(){
console.log("docker inspect --type=image --format=\"{{.Id}}\" " + this.buildTag);
let containerId = bashBare("docker inspect --type=image --format=\"{{.Id}}\" " + this.buildTag);
console.log(containerId);
return containerId;
};
patchContents(){