feat: docker add to homarr (#1825)

This commit is contained in:
Manuel
2025-01-06 19:37:18 +01:00
committed by GitHub
parent be4e75321a
commit 64cc078b09
8 changed files with 161 additions and 7 deletions

View File

@@ -11,5 +11,8 @@ const editAppSchema = manageAppSchema.and(z.object({ id: z.string() }));
export const appSchemas = {
manage: manageAppSchema,
createMany: z
.array(manageAppSchema.omit({ iconUrl: true }).and(z.object({ iconUrl: z.string().min(1).nullable() })))
.min(1),
edit: editAppSchema,
};