MCPcopy
hub / github.com/Dokploy/dokploy / Template

Interface Template

packages/server/src/types/template.ts:16–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16export interface Template {
17 metadata: {
18 id: string;
19 name: string;
20 description: string;
21 version: string;
22 logo: string;
23 links: {
24 github: string;
25 website?: string;
26 docs?: string;
27 };
28 tags: string[];
29 };
30 variables: Record<string, string>;
31 config: {
32 domains: Array<{
33 serviceName: string;
34 port: number;
35 path?: string;
36 host?: string;
37 }>;
38 env: Record<string, string>;
39 mounts?: Array<{
40 filePath: string;
41 content: string;
42 }>;
43 };
44}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected