-
Notifications
You must be signed in to change notification settings - Fork 374
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
ARM64 Image is needed. #358
Comments
I have created an ARM64 Image and pushed it to Dockerhub - |
@kaumudpa how did you get the image to build ? I'm trying on an M1 mack and so far no luck. |
This typically just needs the - platforms: linux/amd64
+ platforms: linux/amd64,linux/arm64 See And the platforms supported by Docker Buildx. Another two options are you can 1) build the image on your machine using the instructions in the readme, or 2) you can override your machine from trying to pull an ARM image by adding that same platform flag to the docker-compose.yaml in this repo (except in reverse of the above suggestion). You can do that by adding the # docker-compose.yaml
calcom:
image: calcom/cal.com:4.2.3
platform: linux/amd64 # tells it to pull the non-ARM build built by this repo
... I personally prefer to just build the image on my machine so it's using the native CPU. You really only have to do it once every time a new release is pushed. Or... someone could just put |
Just pushed another ARM image to dockerhub - 4.3.5 |
Since the dawn of AWS ARM processors - VM's are providing much more realibility and value for money than X86 processors.
The current build images does not support ARM64 - We need to find a way to push both the images on Dockerhub.
The text was updated successfully, but these errors were encountered: