UNPKG

@deploystack/docker-to-iac

Version:

Translate docker run and docker compose file to Infrastructure as Code

9 lines (8 loc) 292 B
export interface EnvironmentConfig { [key: string]: string; } type EnvironmentInput = string[] | { [key: string]: string; } | string | undefined; export declare function normalizeEnvironment(env: EnvironmentInput, envVariables?: Record<string, string>): EnvironmentConfig; export {};