Skip to content

Commit

Permalink
Merge pull request #1324 from Dokploy/1320-missing-path-option-when-a…
Browse files Browse the repository at this point in the history
…dding-a-template-in-dokploy

refactor: add missing path option
  • Loading branch information
Siumauricio authored Feb 15, 2025
2 parents 2ddfc83 + 23b5907 commit 3a7bb50
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/dokploy/templates/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export interface Schema {
projectName: string;
}

export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName">;
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName"> & {
path?: string;
};

export interface Template {
envs?: string[];
Expand Down

0 comments on commit 3a7bb50

Please sign in to comment.