docker/ts/docker.classes.image.ts
2018-07-17 08:39:37 +02:00

15 lines
356 B
TypeScript

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;
}
}