From e62029bca4e63ec6a537a62578f14381ad50c203 Mon Sep 17 00:00:00 2001 From: gyurix Date: Fri, 29 Aug 2025 14:22:20 +0200 Subject: [PATCH 1/2] Remove unnecessary option from MAIL_ENABLE in Gitea template configuration --- gitea/template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/template.json b/gitea/template.json index 2a1db01..b408fb5 100644 --- a/gitea/template.json +++ b/gitea/template.json @@ -41,7 +41,7 @@ { "description": "Sending mail enable", "key": "MAIL_ENABLE", - "value": "false,true", + "value": "false", "info": "Enable sending email (for user registration, notifications, etc.)", "advanced": "true" }, From d6fe96f2c78b5fff0698f815ea9418eed9c4b1a4 Mon Sep 17 00:00:00 2001 From: gyurix Date: Fri, 29 Aug 2025 14:24:52 +0200 Subject: [PATCH 2/2] Update Gitea service configuration to use 'gitea.json' for ENV_FILES and format DNS entries --- gitea/service-gitea.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gitea/service-gitea.json b/gitea/service-gitea.json index f4889be..d6afea7 100644 --- a/gitea/service-gitea.json +++ b/gitea/service-gitea.json @@ -49,7 +49,7 @@ } ], "ENV_FILES": [ - "secret-gitea.json" + "gitea.json" ], "ENVS": [ { @@ -67,7 +67,9 @@ "IMAGE": "gitea:gitea", "UPDATE": "true", "NAME": "giteaapp", - "DNS": ["coredns"], + "DNS": [ + "coredns" + ], "MEMORY": "512M", "SELECTOR": "gitea", "NETWORK": "gitea-net", @@ -92,7 +94,7 @@ ], "EXTRA": "null", "ENV_FILES": [ - "secret-gitea.json" + "gitea.json" ], "DEPEND": [], "START_ON_BOOT": "true",