import { DockerClientService } from './docker-client.service'; import { DefinitionItem } from '../deployment-context.types'; import { DatabaseConfigService } from '../builders/database-config.service'; import { RunStorageService } from '../../storage/run-storage.service'; export declare class DockerDatabaseGroupService { private readonly dockerClient; private readonly databaseConfig; private readonly runStorage; private readonly logger; constructor(dockerClient: DockerClientService, databaseConfig: DatabaseConfigService, runStorage: RunStorageService); createDatabaseGroup(networkName: string, instanceId: string, item: DefinitionItem, containerName: string, instanceItemId: string): Promise; getDbProxyImage(databaseType: string): string; private getDbInternalPort; private setDbInternalPortEnv; private getDbCommand; private buildMongoEntrypoint; private getDbTmpfs; private getInitFileMountPath; }