UNPKG

@deploystack/docker-to-iac

Version:

Translate docker run and docker compose file to Infrastructure as Code

13 lines (12 loc) 351 B
/** * Automatically creates service connection configurations based on environment variables */ export declare function generateDatabaseServiceConnections(config: { services: Record<string, { environment: Record<string, string>; }>; }): Array<{ fromService: string; toService: string; environmentVariables: string[]; }>;