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.