Compare commits

...

2 Commits

Author SHA1 Message Date
b07628bb0b 1.0.47 2019-08-16 21:07:59 +02:00
5815f9b202 fix(core): update 2019-08-16 21:07:59 +02:00
4 changed files with 6 additions and 10 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/docker", "name": "@mojoio/docker",
"version": "1.0.46", "version": "1.0.47",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@mojoio/docker", "name": "@mojoio/docker",
"version": "1.0.46", "version": "1.0.47",
"description": "easy communication with docker remote api from node, TypeScript ready", "description": "easy communication with docker remote api from node, TypeScript ready",
"private": false, "private": false,
"main": "dist/index.js", "main": "dist/index.js",

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) {} public tagImage(newTag) {}
/** /**

View File

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