From 1306d16d424b86f7f4d63cbe6d4bfbc77340bff2 Mon Sep 17 00:00:00 2001 From: Gui-Gos <97973228+Gui-Gos@users.noreply.github.com> Date: Thu, 12 Feb 2026 11:12:26 +0100 Subject: [PATCH] fix(nginx): internalPort as string + add missing source field - internalPort: 80 (number) -> "80" (string) to match Runtipi schema - Added missing source field required for app discovery Co-Authored-By: Claude Opus 4.6 --- apps/nginx/config.json | 1 + apps/nginx/docker-compose.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/nginx/config.json b/apps/nginx/config.json index 47a1607..8d276ec 100644 --- a/apps/nginx/config.json +++ b/apps/nginx/config.json @@ -11,6 +11,7 @@ "tipi_version": 2, "categories": ["utilities", "network"], "description": "Nginx est un serveur web haute performance avec des volumes montés pour la configuration et le contenu des sites.", + "source": "https://hub.docker.com/_/nginx", "website": "https://nginx.org", "supported_architectures": ["amd64", "arm64"], "form_fields": [ diff --git a/apps/nginx/docker-compose.json b/apps/nginx/docker-compose.json index 1434afc..ab10ca9 100644 --- a/apps/nginx/docker-compose.json +++ b/apps/nginx/docker-compose.json @@ -4,7 +4,7 @@ "name": "nginx", "image": "nginx:latest", "isMain": true, - "internalPort": 80, + "internalPort": "80", "volumes": [ { "hostPath": "${APP_DATA_DIR}/conf.d",