cli
cli copied to clipboard
The Docker CLI
### Description Currently, it is only possible to store one set of credentials/token for a registry domain. Defined in AuthConfig https://github.com/docker/cli/blob/v29.1.2/cli/config/types/authconfig.go#L4 . The request is to expand this so that...
### Description First of all: there's lots of legacy code relying on the old output. Hence changing this in such a way really a bad idea - even though having...
- relates to https://github.com/docker/cli/pull/1642 - relates to https://github.com/moby/buildkit/pull/800 The AuthConfig type was forked from the docker/docker API types in commit 27b2797f7deb3ca5b7f80371d825113deb1faca1 to reduce the dependency on the docker API types...
### Description Recently the `docker images` output was changed. This is annoying to long-time users accustomed to the format at best, and breaking to scripting at worst. Things change, however,...
### Description First of all, apologies if this is not the appropriate place to raise this — please feel free to redirect me if this should be handled elsewhere. ##...
Docker secrets are intentionally mounted into containers as files under `/run/secrets/`, which is a secure default. However, many applications and frameworks expect configuration via environment variables rather than files. As...
### Description In [docker-ce_29.0.0-1\~debian.11\~bullseye_amd64.deb](https://download.docker.com/linux/debian/dists/bullseye/pool/stable/amd64/docker-ce_29.0.0-1~debian.11~bullseye_amd64.deb), Cannot build or load a image with following Dockerfile: ``` FROM alpine RUN rm /etc/hostname ``` the problem is: docker-ce 29.0.0-1 cannot delete files in lower...
### Description Environment variables created by docker when using legacy containers links disappeared with docker 29.0: https://docs.docker.com/engine/network/links/#environment-variables ### Reproduce 1. docker run --rm --name container1 -p 1234 -d ubuntu sleep...
### Description Our setup: Windows 11 laptops running the Docker client. The Windows laptops use a [Twingate VPN](https://www.twingate.com/) to connect to our data center. In our Data Center we have...
Instead of: manifest create list image1 image2 manifest annotate list image1 manifest push list You can do: manifest push --file=myfile.yaml list:tag Signed-off-by: Christy Norman **- What I did** **- How...