fix: Cleanup only 2 hours+ old images

This commit is contained in:
Andras Bacsai 2022-03-25 15:34:14 +01:00
parent ef073e586b
commit 2c5f09a8bb

View File

@ -24,7 +24,7 @@ export default async function () {
console.log(error);
}
try {
await asyncExecShell(`DOCKER_HOST=${host} docker image prune -f`);
await asyncExecShell(`DOCKER_HOST=${host} docker image prune -f --filter "until=2h"`);
} catch (error) {
console.log(error);
}