From fc187bccb5856b2d6dd3816fc69ffe0001aa615d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 23 Feb 2024 17:17:13 -0500 Subject: Expose the docker registry address to template engine --- src/main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/main.c b/src/main.c index fec1758..c5e4357 100644 --- a/src/main.c +++ b/src/main.c @@ -216,6 +216,7 @@ int main(int argc, char *argv[], char *arge[]) { tpl_register("system.arch", &ctx.system.arch); tpl_register("system.platform", &ctx.system.platform[DELIVERY_PLATFORM_RELEASE]); tpl_register("deploy.repo", &globals.jfrog.repo); + tpl_register("docker.registry", &ctx.docker.registry); // Set up PREFIX/etc directory information // The user may manipulate the base directory path with OMC_SYSCONFDIR -- cgit