fix: remove volume cleanup from cleanupAll()

This commit is contained in:
фырат ёздэн
2025-12-07 20:11:44 +03:00
committed by GitHub
parent aae7906e77
commit fec4daa59b

View File

@@ -252,7 +252,6 @@ export const cleanupSystem = async (serverId?: string) => {
export const cleanupAll = async (serverId?: string) => {
await cleanupContainers(serverId);
await cleanupImages(serverId);
// await cleanupVolumes(serverId);
await cleanupBuilders(serverId);
await cleanupSystem(serverId);
};