feat: Added support for auto-filling remote MySQL root password in App Store (#11240)

This commit is contained in:
CityFun 2025-12-08 11:39:08 +08:00 committed by GitHub
parent c6f496f2a5
commit d2b030e698
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
}