refactor: use canary in development or canary tags

This commit is contained in:
Mauricio Siu
2025-02-02 19:41:07 -06:00
parent f638f49ab6
commit f9b4035c20
2 changed files with 24 additions and 5 deletions

View File

@@ -58,7 +58,11 @@ export const getContainers = async (serverId?: string | null) => {
serverId,
};
})
.filter((container) => !container.name.includes("dokploy"));
.filter(
(container) =>
!container.name.includes("dokploy") ||
container.name.includes("dokploy-monitoring"),
);
return containers;
} catch (error) {