@deploystack/docker-to-iac
Version:
Translate docker run and docker compose file to Infrastructure as Code
9 lines (8 loc) • 301 B
TypeScript
/**
* Gets the full URL for a Docker image
*
* @param imageString The image string to parse
* @param includeTag Whether to include the tag in the output. Defaults to true.
* @returns Formatted image URL
*/
export declare const getImageUrl: (imageString: string, includeTag?: boolean) => string;