Casvt / MIND

A simple self hosted reminder application that can send push notifications to your device. Set the reminder and forget about it!
https://casvt.github.io/MIND/
GNU General Public License v3.0
201 stars 10 forks source link

Image Docker arm64 #37

Closed gturyz closed 1 year ago

gturyz commented 1 year ago

Hello,

The title says it all ^^'

Casvt commented 1 year ago

No it doesn't? You want a docker image for arm devices? Doesnt the current one suffice for arm devices?

gturyz commented 1 year ago

The current image on the dockerhub mrcas/mind, is only available for amd64 platforms. For ease of use of the image on arm64 platforms, is it possible to add an arm64 version of the image?

Is there something I don't understand?

Casvt commented 1 year ago

Oh okay I can make one for arm I think

gturyz commented 1 year ago

Thank you ^^

pcgeek86 commented 1 year ago

That would be awesome. I use Docker on ARM64 devices, like the ODROID M1, for self-hosting server apps (InfluxDB, Uptime Kuma, etc.). Adding MIND to that list would be helpful.

ptrck0 commented 1 year ago

To create a builder: docker buildx create --name multiarch --use

To create a multi-arch image for MacOS(armv7), RPI(arm64), and normal 64bit cpu's: docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 --tag [your tag]

Docs: https://www.docker.com/blog/multi-arch-build-and-images-the-simple-way/