File size: 375 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import type { SandboxDockerSettings } from "../../config/types.sandbox.js";
type RequiredDockerConfigKeys =
| "image"
| "containerPrefix"
| "workdir"
| "readOnlyRoot"
| "tmpfs"
| "network"
| "capDrop";
export type SandboxDockerConfig = Omit<SandboxDockerSettings, RequiredDockerConfigKeys> &
Required<Pick<SandboxDockerSettings, RequiredDockerConfigKeys>>;
|