MCPcopy
hub / github.com/louislam/dockge / Arguments

Interface Arguments

backend/util-server.ts:25–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23
24// For command line arguments, so they are nullable
25export interface Arguments {
26 sslKey? : string;
27 sslCert? : string;
28 sslKeyPassphrase? : string;
29 port? : number;
30 hostname? : string;
31 dataDir? : string;
32 stacksDir? : string;
33 enableConsole? : boolean;
34}
35
36// Some config values are required
37export interface Config extends Arguments {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected