From d2b030e698cee1b2363958ef46857cb7140b4bcb Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 8 Dec 2025 11:39:08 +0800 Subject: [PATCH] feat: Added support for auto-filling remote MySQL root password in App Store (#11240) --- agent/app/service/app_install.go | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/app/service/app_install.go b/agent/app/service/app_install.go index 2a724a6dc..e75b5a02b 100644 --- a/agent/app/service/app_install.go +++ b/agent/app/service/app_install.go @@ -515,6 +515,7 @@ func (a *AppInstallService) GetServices(key string) ([]response.AppService, erro } else { service.From = constant.AppResourceRemote service.Status = constant.StatusRunning + service.Config = map[string]string{"PANEL_DB_ROOT_PASSWORD": db.Password, "PANEL_DB_ROOT_USER": db.Username} } res = append(res, service) }