docker/ts/interfaces/service.ts
2019-08-16 18:32:41 +02:00

11 lines
258 B
TypeScript

import * as interfaces from './';
import { DockerNetwork } from '../docker.classes.network';
export interface IServiceCreationDescriptor {
Name: string;
Image: string;
Labels: interfaces.TLabels;
networks: DockerNetwork[];
networkAlias: string;
}