buildx icon indicating copy to clipboard operation
buildx copied to clipboard

Docker CLI plugin for extended build capabilities with BuildKit

Results 318 buildx issues
Sort by recently updated
recently updated
newest added

I came across an issue in [GH CI](https://github.com/devinrsmith/deephaven-server-docker/runs/7452282847?check_suite_focus=true): ``` error: failed to solve: failed to compute cache key: failed to calculate checksum of ref 6h5t7qkfv7q6htvvsqs6sw4wd::n2jajo70gwxthi6avdwzqnrrv: "/groovy": not found ``` The...

Proposal after discussion of #1220 Single platform for the `--load` option should be more highlighted, with the help of a Note?

**Description** Currently, the only way to use git over SSH to build from a private repository is to use an URL of the form `git@server`. `git://` uses the raw git...

When using Docker for a large amount of projects on a personal machine, and frequently rebuilding large containers, one may find themselves requiring to prune cached layers from previous builds...

**Description** It seems docker build is ignoring DOCKER_CONTENT_TRUST when building an image that references one that's not signed. **Steps to reproduce the issue:** 1. Set environment variable ``` export DOCKER_CONTENT_TRUST=1...

area/feature-parity

**Description** Building and image with `docker compose` fails when trying to copy an empty directory with `COPY empty-dir/* .`. However, building the same Dockerfile with the same context with `docker...

area/dockerfile

Here's a minimal example to reproduce this problem ``` mkdir -p other_dir/sub_dir/{a,b} ln -s other_dir/sub_dir echo a > sub_dir/a/file echo b > sub_dir/b/file ``` The directory structure is: ``` $...

status/needs-investigation
area/dockerfile

I'm not sure if this will be a bug report or feature request but at least on Windows I cannot get automatic environment variable substitution to work in a Dockerfile...

area/dockerfile

This appears to be a buildx issue. Reproduction steps: ``` $ cat Dockerfile FROM ubuntu:20.04 RUN apt-get update RUN apt-get upgrade -y RUN apt-get install -y libglib2.0 ``` ``` $...

area/qemu

The output of --idfile is a text line but it is missing an end of record (end of line) token. That means many tools will have a hard time parsing...