[PR #721] [MERGED] docs(build-images): document multi-platform builds with Docker Buildx #765

Closed
opened 2025-10-31 15:21:12 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/721
Author: @arevindh
Created: 8/8/2025
Status: Merged
Merged: 8/9/2025
Merged by: @mbecker20

Base: 1.18.5Head: 1.18.5


📝 Commits (2)

  • ecf9f89 docs(build-images): add multi-platform buildx guide to builders.md
  • 355c543 docs(build-images): add multi-platform buildx guide and clarify platform selection in Komodo UI Extra Args field

📊 Changes

1 file changed (+45 additions, -0 deletions)

View changed files

📝 docsite/docs/build-images/builders.md (+45 -0)

📄 Description

Problem

Komodo builders can run Docker builds, but there was no clear documentation on how to enable multi-platform (ARM + x86) image builds. Users unfamiliar with Docker Buildx may not know how to configure it for cross-architecture builds or how to select target platforms in Komodo.

Solution

Added a Multi-Platform Builds with Docker Buildx section to builders.md.
This guide explains:

  • How to create and bootstrap a Buildx builder
  • How to make Buildx the default docker build
  • How to list and inspect builders
  • How to select target platforms directly in the Komodo UI

Usage Example

docker buildx create --name builder --use --bootstrap
docker buildx install
docker buildx ls

In Komodo UI:

--platform linux/amd64,linux/arm64

Documentation Changes

  • New Section: Multi-Platform Builds with Docker Buildx in builders.md
  • Includes: Commands, setup steps, and Komodo UI platform selection guidance

Notes

  • Multi-platform builds can take significantly longer than single-platform builds, especially when emulating architectures with QEMU.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/moghtech/komodo/pull/721 **Author:** [@arevindh](https://github.com/arevindh) **Created:** 8/8/2025 **Status:** ✅ Merged **Merged:** 8/9/2025 **Merged by:** [@mbecker20](https://github.com/mbecker20) **Base:** `1.18.5` ← **Head:** `1.18.5` --- ### 📝 Commits (2) - [`ecf9f89`](https://github.com/moghtech/komodo/commit/ecf9f8951bc53f1f1446f05605c45e3cc1ab74f2) docs(build-images): add multi-platform buildx guide to builders.md - [`355c543`](https://github.com/moghtech/komodo/commit/355c54386b4cad378625e8646698be2f86600236) docs(build-images): add multi-platform buildx guide and clarify platform selection in Komodo UI Extra Args field ### 📊 Changes **1 file changed** (+45 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `docsite/docs/build-images/builders.md` (+45 -0) </details> ### 📄 Description ## Problem Komodo builders can run Docker builds, but there was no clear documentation on how to enable multi-platform (ARM + x86) image builds. Users unfamiliar with Docker Buildx may not know how to configure it for cross-architecture builds or how to select target platforms in Komodo. ## Solution Added a **Multi-Platform Builds with Docker Buildx** section to `builders.md`. This guide explains: - How to create and bootstrap a Buildx builder - How to make Buildx the default `docker build` - How to list and inspect builders - How to select target platforms directly in the Komodo UI ## Usage Example ```sh docker buildx create --name builder --use --bootstrap docker buildx install docker buildx ls ``` In Komodo UI: ``` --platform linux/amd64,linux/arm64 ``` ## Documentation Changes - **New Section:** Multi-Platform Builds with Docker Buildx in `builders.md` - **Includes:** Commands, setup steps, and Komodo UI platform selection guidance ## Notes - Multi-platform builds can take significantly longer than single-platform builds, especially when emulating architectures with QEMU. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-10-31 15:21:12 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#765