Files
runner-container-hooks/packages/docker/src/hooks/cleanup-job.ts
2022-06-03 15:15:19 +02:00

10 lines
200 B
TypeScript

import {
containerNetworkPrune,
containerPrune
} from '../dockerCommands/container'
export async function cleanupJob(): Promise<void> {
await containerPrune()
await containerNetworkPrune()
}