2018-07-16 21:52:50 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-07-17 06:39:37 +00:00
|
|
|
}
|