fix: drop redundant --ipc host flag from worker container

This commit is contained in:
ezl-keygraph
2026-03-22 22:27:13 +05:30
parent 8f795f6dca
commit 4e703ef183
+1 -1
View File
@@ -239,7 +239,7 @@ export function spawnWorker(opts: WorkerOptions): ChildProcess {
args.push(...opts.envFlags);
// Container settings
args.push('--shm-size', '2gb', '--ipc', 'host', '--security-opt', 'seccomp=unconfined');
args.push('--shm-size', '2gb', '--security-opt', 'seccomp=unconfined');
// Image
args.push(getWorkerImage(opts.version));