@deploystack/docker-to-iac
Version:
Translate docker run and docker compose file to Infrastructure as Code
8 lines (7 loc) • 351 B
TypeScript
import { DockerImageInfo } from '../parsers/base-parser';
import { EnvironmentVariableGenerationConfig } from '../types/environment-config';
export declare function processEnvironmentVariablesGeneration(environment: {
[key: string]: string;
}, image: DockerImageInfo, config?: EnvironmentVariableGenerationConfig): {
[key: string]: string;
};