fix: Cleanup images

This commit is contained in:
Andras Bacsai 2022-02-15 20:37:00 +01:00
parent fed83462fa
commit 3ae7624361

View File

@ -40,6 +40,12 @@ export default async function () {
} catch (error) {
console.log(error);
}
// Cleanup dangling images
try {
await asyncExecShell(`DOCKER_HOST=${host} docker image prune -f`);
} catch (error) {
console.log(error);
}
}
}
}