force volume prune

This commit is contained in:
Andras Bacsai
2023-08-16 15:27:10 +02:00
parent aa634c78d1
commit 18d0623011

View File

@@ -1782,7 +1782,7 @@ export async function cleanupDockerStorage(dockerId, volumes = false) {
} catch (error) { } } catch (error) { }
if (volumes) { if (volumes) {
try { try {
await executeCommand({ dockerId, command: `docker volume prune -a` }); await executeCommand({ dockerId, command: `docker volume prune -af` });
} catch (error) { } } catch (error) { }
} }
} }