-
Notifications
You must be signed in to change notification settings - Fork 71.9k
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 Docker image for arm64 architecture #7043
Conversation
Closes #6932. Thanks @p5nbTgip0r! |
Build Docker image for arm64 architecture (nightscout#7043)
Build Docker image for arm64 architecture (nightscout#7043)
* Build docker image for arm64 architecture * Add `platforms` input * Merge `master` and `dev` jobs together into one * Run job on master or dev branch
* Build docker image for arm64 architecture * Add `platforms` input * Merge `master` and `dev` jobs together into one * Run job on master or dev branch
Can this docker image also set up mongodb? |
That's not what Docker is for. Containers are supposed to run discrete apps. |
This adds multi-platform Docker image building and publishing support to the CI via
docker buildx
. In addition, the Docker image will be built forarm64
alongsideamd64
. For simplicity, I also merged the twopublish_dev
andpublish_master
jobs into one job namedpublish
.Fixes #6932.