Merge pull request #3188 from fir4tozden/fix/remove-volume-cleanup-from-cleanupall

fix: remove volume cleanup from cleanupAll()
This commit is contained in:
Mauricio Siu
2025-12-07 12:52:33 -06:00
committed by GitHub
2 changed files with 1 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
import { readdirSync } from "node:fs";
import { join } from "node:path";
import { docker } from "@dokploy/server/constants";
import { cleanupAll } from "@dokploy/server/utils/docker/utils";
import {
execAsync,
execAsyncRemote,

View File

@@ -235,7 +235,7 @@ export const cleanupBuilders = async (serverId?: string) => {
export const cleanupSystem = async (serverId?: string) => {
try {
const command = "docker system prune --all --volumes --force";
const command = "docker system prune --all --force";
if (serverId) {
await execAsyncRemote(serverId, dockerSafeExec(command));
@@ -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);
};