mybb / mybb/docker

Support for arm64 architecture

Open
#14 2 comments 1 reaction 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Dockerfile
Stars
63
Forks
26
Avg merge
16m
Merged PRs (30d)
1

Description

Please add support for arm64 architecture to docker images.

It is possible to create docker images supporting both amd64 and arm64 using buildx:

docker buildx build \
  --build-arg BUILD_AUTHORS="Kane 'kawaii' Valentine <kawaii@mybb.com>" \
  --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
  --build-arg BUILD_SHA512SUM=be3bdec9617050abbabbfcfa40e9cd145db3a57ae70e740bc62d807b04c08a5fa42ac690a5502c344f0f7452276aa0f3802501e6d62fa76edc64ac36da25b3cd \
  --build-arg BUILD_VERSION=1830 \
  --platform linux/arm64/v8,linux/amd64 \
  --tag mybb/mybb:1.8 \
  --tag mybb/mybb:1.8.30 \
  --tag mybb/mybb:latest \
  $PWD

Add the --push option to upload images.

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by inspecting the repository's Dockerfile and current Docker image build and publishing workflow. Use the issue's buildx command as the reference for the target platforms, then verify that the resulting tags support both linux/amd64 and linux/arm64/v8 after publishing.

Written by the indexing model from the issue text.

Assessment

Tech stack
docker
Domain
devops
Issue type
Feature
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
42/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.