From 2e7b544ab3134e41b8be5b81217a2e569bc6f671 Mon Sep 17 00:00:00 2001 From: savage <80460919+Savage890@users.noreply.github.com> Date: Fri, 10 Apr 2026 01:19:03 +0530 Subject: [PATCH 1/2] Update arc_execution.yamls): add missing /sockets volume mount to arc_execution.yaml Add ./sockets:/sockets volume mapping so the IPC socket directory is available inside the container. Without this mount, the execution engine crashes with 'failed to listen on ipc endpoint /sockets/reth.ipc: No such file or directory'. --- deployments/arc_execution.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deployments/arc_execution.yaml b/deployments/arc_execution.yaml index 776b48b..ffc4acc 100644 --- a/deployments/arc_execution.yaml +++ b/deployments/arc_execution.yaml @@ -27,6 +27,7 @@ services: volumes: - ../assets/localdev:/app/assets - ./entrypoint_arc_execution.sh:/usr/local/bin/entrypoint.sh + - ./sockets:/sockets extra_hosts: - host.docker.internal:host-gateway ports: From d10c5a5629154566927f0bbf839b34eb57c22eed Mon Sep 17 00:00:00 2001 From: savage <80460919+Savage890@users.noreply.github.com> Date: Fri, 10 Apr 2026 03:19:06 +0530 Subject: [PATCH 2/2] Update arc_execution.yamlfix: align sockets volume indentation with other volume entriesa --- deployments/arc_execution.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/arc_execution.yaml b/deployments/arc_execution.yaml index ffc4acc..f9eda6f 100644 --- a/deployments/arc_execution.yaml +++ b/deployments/arc_execution.yaml @@ -27,7 +27,7 @@ services: volumes: - ../assets/localdev:/app/assets - ./entrypoint_arc_execution.sh:/usr/local/bin/entrypoint.sh - - ./sockets:/sockets + - ./sockets:/sockets extra_hosts: - host.docker.internal:host-gateway ports: