fix(core): update

This commit is contained in:
2019-08-14 14:19:45 +02:00
parent d12d595f21
commit 867dda8e7c
9 changed files with 605 additions and 380 deletions

View File

@ -0,0 +1,7 @@
import { DockerNetwork } from '../docker.classes.network';
export interface IContainerCreationSpecifier {
hostname: string;
domainName: string;
networks?: DockerNetwork[];
}

View File

@ -1,2 +1,3 @@
export * from './container';
export * from './label';
export * from './port';