Docker Container Issues : permission denied: #2393
-
|
Hi Folks, Crazy Chris here, For about two week snow I have not been able to get clio to start in her docker container. I now no longer have nay hair ;-) I created the following docker-compose.yaml file ` cassandra: xrpld: clio: volumes: xrpld ... runs however clio throws this error:
it appears that the container does not have the permissions to runc clio_server. I would very much appreciate a hint in the right direction All the best |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
I was able to reproduce using simple docker command: Note: I added Then I added I ran: After running: So, the problem is that the binary file is not executable. |
Beta Was this translation helpful? Give feedback.
-
|
@ReallyCrazyChris I fixed the issue in #2394 And finally triggered nigthly release here: https://github.com/XRPLF/clio/actions/runs/16756553845 PS: I hope hair will grow back 🙂 |
Beta Was this translation helpful? Give feedback.
-
|
I've checked like this: Please, if you have any further problems, open them as issues. |
Beta Was this translation helpful? Give feedback.
I was able to reproduce using simple docker command:
Note: I added
--platform linux/amd64because I'm on M4 macOS.Then I added
--entrypoint /bin/bash --user root:docker run -it --rm --platform linux/amd64 --entrypoint /bin/bash --user root rippleci/clio:ba905e38ae16eea806…