Skip to content

Commit c69cb4b

Browse files
committed
fix DOCKER_ENFORCE_MACHINE_PRESETS bool coercion
1 parent 54ac089 commit c69cb4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/supervisor/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const Env = z.object({
4848
RESOURCE_MONITOR_OVERRIDE_MEMORY_TOTAL_GB: z.coerce.number().optional(),
4949

5050
// Docker settings
51-
DOCKER_ENFORCE_MACHINE_PRESETS: z.coerce.boolean().default(true),
51+
DOCKER_ENFORCE_MACHINE_PRESETS: BoolEnv.default(true),
5252
DOCKER_AUTOREMOVE_EXITED_CONTAINERS: BoolEnv.default(true),
5353
/**
5454
* Network mode to use for all runners. Supported standard values are: `bridge`, `host`, `none`, and `container:<name|id>`.

0 commit comments

Comments
 (0)