When spinning up the full node using the provided docker-compose -f arc_execution.yaml -f arc_consensus.yaml up -d, the arc_execution engine crashes and fails to connect to the consensus layer.
The Error:
Error: failed to listen on ipc endpoint '/sockets/reth.ipc': No such file or directory
The Fix I Applied Locally:
The volumes section in deployments/arc_execution.yaml is missing the mount for the sockets directory. I manually patched it by adding:
After creating the directory and adding this line, both engines booted and synced perfectly. Thought you guys should know so you can patch the repo!

When spinning up the full node using the provided docker-compose -f arc_execution.yaml -f arc_consensus.yaml up -d, the arc_execution engine crashes and fails to connect to the consensus layer.
The Error:
Error: failed to listen on ipc endpoint '/sockets/reth.ipc': No such file or directory
The Fix I Applied Locally:
The volumes section in deployments/arc_execution.yaml is missing the mount for the sockets directory. I manually patched it by adding:
After creating the directory and adding this line, both engines booted and synced perfectly. Thought you guys should know so you can patch the repo!