Fix #15: Add missing /sockets volume mount to deployments#16
Merged
ZhiyuCircle merged 2 commits intocirclefin:mainfrom Apr 9, 2026
Merged
Fix #15: Add missing /sockets volume mount to deployments#16ZhiyuCircle merged 2 commits intocirclefin:mainfrom
ZhiyuCircle merged 2 commits intocirclefin:mainfrom
Conversation
…_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'.
ZhiyuCircle
reviewed
Apr 9, 2026
| volumes: | ||
| - ../assets/localdev:/app/assets | ||
| - ./entrypoint_arc_execution.sh:/usr/local/bin/entrypoint.sh | ||
| - ./sockets:/sockets |
Contributor
There was a problem hiding this comment.
nit: could you fix indentation
…ther volume entriesa
ZhiyuCircle
approved these changes
Apr 9, 2026
Merged
malmon-circle
pushed a commit
that referenced
this pull request
Apr 24, 2026
Fixes #15 ## Problem When running the node with `docker-compose -f arc_execution.yaml -f arc_consensus.yaml up -d`, the execution engine crashes on startup: \`\`\` Error: failed to listen on ipc endpoint '/sockets/reth.ipc': No such file or directory \`\`\` The command section already references `--ipcpath=/sockets/reth.ipc` and `--auth-ipc.path=/sockets/auth.ipc`, but there's no corresponding volume mount for `/sockets` in the compose file so the directory doesn't exist inside the container. ## Fix Added `./sockets:/sockets` to the volumes section of the `arc_execution` service. ## Testing After adding the mount and creating the local `sockets/` directory, both `arc_execution` and `arc_consensus` containers boot and sync correctly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #15
Problem
When running the node with
docker-compose -f arc_execution.yaml -f arc_consensus.yaml up -d, the execution engine crashes on startup:```
Error: failed to listen on ipc endpoint '/sockets/reth.ipc': No such file or directory
```
The command section already references
--ipcpath=/sockets/reth.ipcand--auth-ipc.path=/sockets/auth.ipc, but there's no corresponding volume mount for/socketsin the compose file so the directory doesn't exist inside the container.Fix
Added
./sockets:/socketsto the volumes section of thearc_executionservice.Testing
After adding the mount and creating the local
sockets/directory, botharc_executionandarc_consensuscontainers boot and sync correctly.