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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i try to run the docker on my rasberry pi i get this error along with an error about running from amd64 to arm64 and not specified
harvey@raspberrypi:~/rustplusplus $ sudo docker-compose up --build Recreating rpp ... done Attaching to rpp rpp | node: error while loading shared libraries: libdl.so.2: ELF load command address/offset not page-aligned rpp exited with code 127
wondering of there is any workarounds or adjustments i can make for the code to run on this
The text was updated successfully, but these errors were encountered:
Sounds like the maintainer hasn't provided an ARM image. You could just build one yourself:
git clone https://github.com/alexemanuelol/rustplusplus.git && cd rustplusplus docker build -t rustplusplus:latest .
Then change the image in your docker-compose.yml to rustplusplus:latest, and you should be able to run it in the same way
docker-compose.yml
Sorry, something went wrong.
Sounds like the maintainer hasn't provided an ARM image. You could just build one yourself: git clone https://github.com/alexemanuelol/rustplusplus.git && cd rustplusplus docker build -t rustplusplus:latest . Then change the image in your docker-compose.yml to rustplusplus:latest, and you should be able to run it in the same way
Yup, it could be interesting to setup docker buildx arm, amd... to support multiple architecture
No branches or pull requests
When i try to run the docker on my rasberry pi i get this error along with an error about running from amd64 to arm64 and not specified
harvey@raspberrypi:~/rustplusplus $ sudo docker-compose up --build
Recreating rpp ... done
Attaching to rpp
rpp | node: error while loading shared libraries: libdl.so.2: ELF load command address/offset not page-aligned
rpp exited with code 127
wondering of there is any workarounds or adjustments i can make for the code to run on this
The text was updated successfully, but these errors were encountered: