@nestjs-mod/docker-compose
Version:
Docker Compose is a tool for defining and running multi-container applications. It is the key to unlocking a streamlined and efficient development and deployment experience. (Generator docker-compose.yml for https://docs.docker.com/compose)
20 lines (19 loc) • 507 B
TypeScript
export declare class DockerComposeMinioConfiguration {
image?: string;
featureName?: string;
networks?: {
name: string;
driver: string;
}[];
externalPort?: number;
externalConsolePort?: number;
nginxPort?: number;
nginxConfigFolder?: string;
nginxLogsFolder?: string;
nginxBucketsLocations?: string[];
nginxConfigContent?: string;
}
export declare class DockerComposeMinioEnvironments {
minioRootUser: string;
minioRootPassword: string;
}