From 031f667db56735351a6d0f8ee36d514da4482c44 Mon Sep 17 00:00:00 2001 From: hellodword <46193371+hellodword@users.noreply.github.com> Date: Wed, 14 Feb 2024 04:42:34 +0000 Subject: [PATCH] Fixes: mounts may contain string items --- src/contracts/features.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contracts/features.ts b/src/contracts/features.ts index 209fa4a..43e8d60 100644 --- a/src/contracts/features.ts +++ b/src/contracts/features.ts @@ -15,7 +15,7 @@ export interface Feature { licenseURL?: string; options?: Record; containerEnv?: Record; - mounts?: Mount[]; + mounts?: (Mount|string)[]; init?: boolean; privileged?: boolean; capAdd?: string[];