fix(core): shift to new style

This commit is contained in:
2018-07-16 23:52:50 +02:00
parent 7009e07ecc
commit a037cba454
23 changed files with 595 additions and 1561 deletions

View File

@ -0,0 +1,14 @@
import * as plugins from './dockersock.plugins';
import { DockerHost } from './docker.classes.host';
export class DockerImage {
/**
* the tags for an image
*/
tags: string[] = [];
static async createFromRegsitry(dockerHostArg: DockerHost): Promise<DockerImage> {
const resultingImage = new DockerImage();
return resultingImage;
}
}