container-runtime

Rendered from Markdown into styled HTML. Code blocks, tables, and links stay readable and theme-consistent.

On This Page

Exported APIEnvironment Variables ReferencedNotable Internal Symbols

container-runtime

  • Source file: src/container-runtime.ts
  • Lines: 38
  • Responsibility: Selects runtime backend (apple vs docker) and runtime command.

Exported API

export type ContainerRuntime = 'apple' | 'docker';
export function getContainerRuntime(): ContainerRuntime {
export function getRuntimeCommand(runtime: ContainerRuntime): string {

Environment Variables Referenced

  • CONTAINER_RUNTIME

Notable Internal Symbols

function commandExists(cmd: string): boolean {