Questions tagged [buildx]

Docker Buildx is a CLI plugin that extends the docker command with the full support of the features provided by Moby BuildKit builder toolkit. It provides the same user experience as docker build with many new features like creating scoped builder instances and building against multiple nodes concurrently.

140 questions
0
votes
1 answer

numpy builds on docker buildx exceeds build times way more than an hour

System Docker version 20.10.8, build 3967b7d Windows 10 Pro with Docker Desktop As a requirement I have to port my Python3.x application to support working on arm/v7 architecture hardware. I have GitHub Workflows that can build for linux/arm64 and…
Shan-Desai
  • 3,101
  • 3
  • 46
  • 89
0
votes
1 answer

How does buildx name its pods when used with Kubernetes driver

I am trying to understand a problem that currently arises with buildx, its Kubernetes driver, GitLab CI/CD, and parallel jobs. What is the suffix 0 that appears in builder instances's pod names? It looks like an index, but seems unrelated to…
rookie099
  • 2,201
  • 2
  • 26
  • 52
0
votes
1 answer

Docker buildx - Select specific nodes for build monorepo support

We are using a K8s development tool called Tilt (https://tilt.dev/) which builds dev images of a stack with a ton of microservices and allows live reloading, etc. I have deployed remote builder pods to an AWS K8s cluster using buildx create with 10…
Zfalen
  • 878
  • 6
  • 20
0
votes
1 answer

Docker: Using buildx to support multiple architecture, do I need it on the parent image?

I'm trying here, after having posted the following on the Docker Forum. I’ve tried the buildx command explained in the documentation (from my Intel-based Mac): # This normally works with build, without buildx git clone…
zakmck
  • 2,715
  • 1
  • 37
  • 53
-1
votes
1 answer

Does Docker or any of its plugins support conditional syntax where certain blocks of RUN commands can be selectively executed?

I am trying the create a single Dockerfile for my development environments that I can use to customize an image by setting various flags. The following example illustrates this point, I'm currently using ARG and bash if/then to accomplish this.…
user1172468
  • 5,306
  • 6
  • 35
  • 62
1 2 3
9
10