From 7d59400114f55b817b5524a36079262b002d30ad Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Thu, 5 Mar 2026 11:00:00 -0500 Subject: [PATCH] fix: update lsio template registry url to valid endpoint --- backend/src/services/TemplateService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/services/TemplateService.ts b/backend/src/services/TemplateService.ts index cfe2e0ef..a03a2eed 100644 --- a/backend/src/services/TemplateService.ts +++ b/backend/src/services/TemplateService.ts @@ -50,7 +50,7 @@ export class TemplateService { try { const settings = DatabaseService.getInstance().getGlobalSettings(); // Default to a reliable LSIO Portainer v2 template registry if not set - const registryUrl = settings.template_registry_url || 'https://raw.githubusercontent.com/technorabilia/portainer-templates/main/lsio/templates/templates-2.0.json'; + const registryUrl = settings.template_registry_url || 'https://raw.githubusercontent.com/technorabilia/portainer-templates/main/lsio/templates/templates.json'; const response = await axios.get(registryUrl); // Filter out templates without images as we are generating compose files from image, ports, etc.