-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
Build ARM-compatible version of this Image #11
Comments
The third line of the error message, docker: no matching manifest for linux/arm64/v8 in the manifest list entries., indicates that Docker is unable to find a matching manifest for the specified image and platform (Linux, architecture: arm64, variant: v8). This error could occur because the image doesn't exist on the specified repository or the specified platform is not supported by the image. You can try pulling the image from a different repository, or you can specify a different platform that is supported by the image. You can use the docker run command with the --platform option to specify the desired platform. For example: docker run --platform linux/amd64 ghcr.io/celestiaorg/local-celestia-devnet:main |
When specifying the amd64 platform on a mac, it does not run natively on Mac. Also, this approach is not possible for RPIs. I propose reopening this issue and changing the |
hmm, it worked for me on my Mac 🤔 |
Yes, modern Macs have an arm processor but can emulate amd processes. |
ah, cool. what are you on? I'd imagine intel macs can not use this |
also, I looked into the Dockerfile. I think it may be celestia-app that is not built for this use-case? do you know what the fix is for this or if this is the case? |
Soon there will be a new common workflow in place, that will be used by celestia-app. Then this will also be built on arm. |
Nope, I have a note on the tutorials that says it's only been tested on AMD |
On Mac (ARM)
Result
Link to snippet
The text was updated successfully, but these errors were encountered: