Merge branch 'Dokploy:canary' into feat/internal-path-routing

This commit is contained in:
Jhonatan Caldeira
2025-06-28 12:24:01 -03:00
committed by GitHub
11 changed files with 75 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "dokploy",
"version": "v0.23.3",
"version": "v0.23.4",
"private": true,
"license": "Apache-2.0",
"type": "module",

View File

@@ -837,6 +837,14 @@ export const settingsRouter = createTRPCRouter({
getLogCleanupStatus: adminProcedure.query(async () => {
return getLogCleanupStatus();
}),
getDokployCloudIps: adminProcedure.query(async () => {
if (!IS_CLOUD) {
return [];
}
const ips = process.env.DOKPLOY_CLOUD_IPS?.split(",");
return ips;
}),
});
export const getTraefikPorts = async (serverId?: string) => {