docker/ts/interfaces/container.ts

8 lines
178 B
TypeScript
Raw Normal View History

import { DockerNetwork } from '../classes.network.js';
2019-08-14 12:19:45 +00:00
2019-08-14 21:21:54 +00:00
export interface IContainerCreationDescriptor {
2019-08-15 16:50:13 +00:00
Hostname: string;
Domainname: string;
2019-08-14 12:19:45 +00:00
networks?: DockerNetwork[];
}