fix(core): update

This commit is contained in:
2019-08-16 18:21:55 +02:00
parent a28b10ac51
commit 73f8ded3fe
4 changed files with 22 additions and 4 deletions

View File

@ -1,7 +1,9 @@
import * as interfaces from './';
import { DockerNetwork } from '../docker.classes.network';
export interface IServiceCreationDescriptor {
Name: string;
Image: string;
Labels: interfaces.TLabels;
networks: DockerNetwork[];
}