From de61dfbfa31241cb1e33373e519cfd09bccb429b Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 9 Dec 2025 17:42:47 -0600 Subject: [PATCH] docs: add storage cleanup note to cluster documentation - Introduced a Callout component to highlight the importance of manual storage cleanup for workers and associated nodes in Dokploy. - Provided guidance on configuring remote servers for automatic cleanup and clarified that no setup is needed when adding a node as a remote server. https://github.com/Dokploy/dokploy/issues/3195 --- apps/docs/content/docs/core/cluster.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/docs/content/docs/core/cluster.mdx b/apps/docs/content/docs/core/cluster.mdx index 72d971b..66c2dd4 100644 --- a/apps/docs/content/docs/core/cluster.mdx +++ b/apps/docs/content/docs/core/cluster.mdx @@ -3,6 +3,8 @@ title: Cluster description: 'Manage server cluster settings.' --- +import { Callout } from "fumadocs-ui/components/callout"; + When you deploy applications in dokploy, all of them run on the same node. If you wish to run an application on a different server, you can use the cluster feature. The idea of using clusters is to allow each server to host a different application and, using Traefik along with the load balancer, redirect the traffic from the dokploy server to the servers you choose. @@ -80,3 +82,7 @@ You can click the 'Add Node' button, which will display the instructions you nee Once you follow the instructions, the workers or managers will appear in the table. + + + **Storage Cleanup Note**: Dokploy does not perform automatic cleanup of storage for workers or other associated nodes that are not the Dokploy server. For automatic cleanup, you can add your node as a remote server and configure cleanups, or create a schedule that performs that cleanup. Additionally, you don't need to perform setup when you only add the node as a remote server. For more information, see the [Remote Servers documentation](/docs/core/remote-servers). +