feat: enhance volume pruning functionality with filter options

This commit is contained in:
SaelixCode
2026-03-03 08:20:30 -05:00
parent ec90911e14
commit 587e88e93d
+1 -1
View File
@@ -74,7 +74,7 @@ class DockerController {
} else if (target === 'networks') {
result = await this.docker.pruneNetworks();
} else if (target === 'volumes') {
result = await this.docker.pruneVolumes();
result = await this.docker.pruneVolumes({ filters: { all: ['true'] } });
}
return {