Open odidev opened 3 years ago
I will look into adding this to builds via Github actions
Hi @tyndyll, I have raised PR by adding builds via Github actions. PR link: https://github.com/mailhog/MailHog/pull/378
I am not looking for a Docker image but just a plain ARM64 build if possible.
Inspired by #245, we have made this (which we use in daily basis). There are amd64 and arm64 variants. https://hub.docker.com/repository/docker/druidfi/mailhog
Here is the Dockerfile: https://github.com/druidfi/docker-images/blob/main/misc/mailhog/Dockerfile
I will look into adding this to builds via Github actions
I've done it yesterday to create an automatic mailhog docker image which supports arm64 and amd64. https://github.com/teawithfruit/mailhog https://hub.docker.com/r/teawithfruit/mailhog
Feel free to copy...
@tyndyll @gedge @pmhausen @lafentres @marcdeop ... ?
This would be really nice to have..
This would be really nice to have..
+1
+1
2024 is here, so +1 from me :)
Mailpit has arm64
images, FYI
This project is not maintained any more https://github.com/mailhog/MailHog/issues/442#issuecomment-1493415258
Should move to Mailpit (or any other alternative)
I am trying to use mailhog image on arm64 platform but arm64 tag is not available in dockerhub. I have successfully built the docker image for Linux/ARM64 by using below buildx commands in the travis.yml file without any changes in Dockerfile: { docker buildx build -t odidev/sample:mailhogx64ARM --platform linux/amd64,linux/arm64 --push . } Commit: https://github.com/odidev/MailHog/commit/5584b40e55484fdec7f175afa4f8e13edc1437f9 Image: https://hub.docker.com/r/odidev/sample/tags?page=1&ordering=last_updated May I know how you are releasing the images? I will be happy to contribute and raise the PR.