run-in-container
Version:
CLI to assist running commands inside containers
19 lines (18 loc) • 654 B
TypeScript
import { JSONSchema } from "json-schema-typed";
export declare const enum SchemaProperties {
containerRuntime = "containerRuntime",
defaults = "defaults"
}
export declare const enum DefaultLevel {
global = "global",
containerRuntime = "containerRuntime",
container = "container"
}
export declare enum ContainerRuntimes {
docker = "docker",
podman = "podman"
}
export declare type DefaultLevelKeys = keyof typeof DefaultLevel;
export declare type SchemaKeys = keyof typeof SchemaProperties;
export declare type ContainerRuntimeKeys = keyof typeof ContainerRuntimes;
export declare const Schema: Record<SchemaKeys, JSONSchema>;