From 15fe3b21c95d3ade145adae9de45ce36b3ae8ea0 Mon Sep 17 00:00:00 2001 From: Ansuj Kumar Meher Date: Sat, 18 Jul 2026 21:04:25 +0530 Subject: [PATCH] fix: rename compose "Reload" action to "Rebuild" Renames the compose "Reload" action to "Rebuild" to accurately reflect its actual behavior. Clicking "Reload" triggers rebuildCompose() which executes a full Docker build (docker compose up -d --build). Also updates dialog text, toast notifications, and tooltips accordingly. Fixes #4666 --- .../dashboard/compose/general/actions.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/dokploy/components/dashboard/compose/general/actions.tsx b/apps/dokploy/components/dashboard/compose/general/actions.tsx index c2b984b39..a4cffd864 100644 --- a/apps/dokploy/components/dashboard/compose/general/actions.tsx +++ b/apps/dokploy/components/dashboard/compose/general/actions.tsx @@ -84,19 +84,19 @@ export const ComposeActions = ({ composeId }: Props) => { )} {canDeploy && ( { await redeploy({ composeId: composeId, }) .then(() => { - toast.success("Compose reloaded successfully"); + toast.success("Compose rebuilt successfully"); refetch(); }) .catch(() => { - toast.error("Error reloading compose"); + toast.error("Error rebuilding compose"); }); }} > @@ -109,12 +109,14 @@ export const ComposeActions = ({ composeId }: Props) => {
- Reload + Rebuild
-

Reload the compose without rebuilding it

+

+ Rebuilds the compose without downloading the source code +