@augment-vir/node
Version:
A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.
11 lines (10 loc) • 419 B
TypeScript
import { type PartialWithUndefined } from '@augment-vir/core';
export declare function killContainer(containerNameOrId: string, options?: PartialWithUndefined<{
/**
* If set to `true`, the container will be killed but won't be removed. (You'll still see it
* in your Docker Dashboard but it'll have a status of exited.)
*
* @default false
*/
keepContainer: boolean;
}>): Promise<void>;