Files
docker/ts/interfaces/container.ts

13 lines
398 B
TypeScript
Raw Normal View History

import { DockerNetwork } from '../classes.network.js';
2019-08-14 14:19:45 +02:00
/**
* Container creation descriptor supporting both string references and class instances.
* Strings will be resolved to resources internally.
*/
2019-08-14 23:21:54 +02:00
export interface IContainerCreationDescriptor {
2019-08-15 18:50:13 +02:00
Hostname: string;
Domainname: string;
/** Network names (strings) or DockerNetwork instances */
networks?: (string | DockerNetwork)[];
2019-08-14 14:19:45 +02:00
}