MCPcopy
hub / github.com/fosrl/pangolin / DockerState

Interface DockerState

src/lib/docker.ts:12–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
11
12export interface DockerState {
13 isEnabled: boolean;
14 isAvailable: boolean;
15 socketPath?: string;
16 containers: Container[];
17}
18
19export class DockerManager {
20 private api: any;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected