Update to v7.57.0

This commit is contained in:
aapanel.com
2025-11-21 17:19:27 +08:00
parent b6e4ab8b35
commit eb21fc65dd
1241 changed files with 22299 additions and 5531 deletions
+2 -2
View File
@@ -1205,12 +1205,12 @@ class main(dockerBase):
if key not in data.keys():
data[str(port["PrivatePort"]) + "/" + port["Type"]] = [{
"HostIp": port["IP"],
"HostPort": str(port["PublicPort"])
"HostPort": str(port.get("PublicPort", ""))
}] if "IP" in port else None
else:
data[str(port["PrivatePort"]) + "/" + port["Type"]].append({
"HostIp": port["IP"],
"HostPort": str(port["PublicPort"])
"HostPort": str(port.get("PublicPort", ""))
})
return data