You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I try to start the docker container a Raspberry Pi 5 like: docker run -it -p 3000:3000 dradis/dradis-ce
the command fails with the following error: exec /usr/local/bundle/bin/bundle: exec format error
A quick google search reveals, that this seems to be a platform relatet issue: https://stackoverflow.com/questions/73285601/docker-exec-usr-bin-sh-exec-format-error
Relevant Docker inspect output:
"Architecture": "arm64",
"Os": "linux",
Output of uname -a: Linux ubuntu 6.5.0-1010-raspi #13-Ubuntu SMP PREEMPT_DYNAMIC Thu Jan 18 09:08:04 UTC 2024 aarch64 aarch64 aarch64 GNU/Linux
Some dependencies seem not to work with the Raspberry Pi architecture.
The text was updated successfully, but these errors were encountered:
Thanks for reporting @maxvaer! I just want to note that our Docker setup is still a WIP. In the meantime, can you confirm if you're getting the same result when using the arm64 image by adding the option in your docker run: --platform=linux/arm64?
Thanks for your reply.
This still results in the same output: docker run -it --platform=linux/arm64 -p 3000:3000 dradis/dradis-ce
Outputs: exec /usr/local/bundle/bin/bundle: exec format error
If I try to start the docker container a Raspberry Pi 5 like:
docker run -it -p 3000:3000 dradis/dradis-ce
the command fails with the following error:
exec /usr/local/bundle/bin/bundle: exec format error
A quick google search reveals, that this seems to be a platform relatet issue:
https://stackoverflow.com/questions/73285601/docker-exec-usr-bin-sh-exec-format-error
Relevant Docker inspect output:
Output of
uname -a
:Linux ubuntu 6.5.0-1010-raspi #13-Ubuntu SMP PREEMPT_DYNAMIC Thu Jan 18 09:08:04 UTC 2024 aarch64 aarch64 aarch64 GNU/Linux
Some dependencies seem not to work with the Raspberry Pi architecture.
The text was updated successfully, but these errors were encountered: