cli
cli copied to clipboard
The Docker CLI
### Description We create multiarch images and group them with a manifest through `docker manifest create`, recently our release pipelines started failing because the last step where the manifest is...
### Description In situations where the config-file is invalid, we ignore the error, and proceed, which can lead to the config file being overwritten for an "empty" file (only some...
### Description Using build --platform linux/amd64 --push vs build --platform linux/amd64 & push --platform linux/amd64 yield different results when build from arm64 based system. It seems like the --push flag...
Adds completion for the `docker events --filter` family. @thaJeztah PTAL. This is in an early stage (only some filters implemented yet), and I would like to get early feedback whether...
- relates to https://github.com/docker/cli/pull/4982 - fixes https://github.com/docker/cli/issues/5555 A single image can be tagged under multiple names. While they are the same image under the hood (same digest), we always presented...
### Description docker save fails for image pulled using --platform=linux/arm64 on amd64 host. 1. I pulled image as, `docker pull --platform=linux/arm64 nginx:latest` ```bash docker images --no-trunc REPOSITORY TAG IMAGE ID...
Refactor the DetectDefaultStore to allow testing it cross-platform, and without the actual helpers installed. This also makes a small change in the logic for detecting the preferred helper. Previously, it...
### Description By default, docker builds should exclude common patterns from `ADD` / `COPY` directives: * `*Dockerfile*`, including the standard `Dockerfile` path, as well as any user custom `Dockerfile.`, `Dockerfile-`,...
### Description The config/configfile package always uses the current schema of the config-file to save the file to disk. This can be problematic, as there's many code-bases that use this...
- follow-up to https://github.com/docker/cli/pull/5556 - relates to https://github.com/docker/cli/issues/5560 --- ## image ls --tree: order images alphabetically The tree output currently uses the same sort order as the existing non-tree output,...