buildahcker
Version:
Buildahcker is a node.js library to create and run commands in OCI (Open Container Initiative) container images (or docker images), based on Buildah and a hash-based cache. It also contains utilities to easily create a partitioned bootable disk image of a
13 lines (12 loc) • 345 B
TypeScript
import type { AtomicStep } from "../../container";
export interface VeritytabVolume {
name: string;
metadataFile: string;
device?: string;
options?: string[];
}
export interface VeritytabOptions {
replace?: boolean;
volumes: VeritytabVolume[];
}
export declare const veritytab: (options: VeritytabOptions) => AtomicStep;