We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Describe the Bug I get an exec format error when I try to spin up a container from a compose file on my RaspberryPi 3B+.
To Reproduce Made a docker compose file based off the run command in the documentation, added a platform entry (Linux/arm/v7) and container_name.
Expected Behavior Container to load
Actual Behavior "exec /enigma-bbs/docker/bin/docker-entrypoint.sh: exec format error"
Screenshots If applicable, add screenshots to help explain your problem.
Environment
npm install
yarn
node --version
uname -a
git rev-parse --short HEAD
The text was updated successfully, but these errors were encountered:
@thegreekgeek sounds like you need to add a shebang and mark the script executable:
#/usr/bin/env bash
and
chmod +x docker-entrypoint.sh
Sorry, something went wrong.
No branches or pull requests
Describe the Bug
I get an exec format error when I try to spin up a container from a compose file on my RaspberryPi 3B+.
To Reproduce
Made a docker compose file based off the run command in the documentation, added a platform entry (Linux/arm/v7) and container_name.
Expected Behavior
Container to load
Actual Behavior
"exec /enigma-bbs/docker/bin/docker-entrypoint.sh: exec format error"
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
npm install
oryarn
reports successnode --version
): 21.7.3uname -a
on *nix systems): Linux 6.1.21-v7+git rev-parse --short HEAD
): N/A AFAIKThe text was updated successfully, but these errors were encountered: