cli
cli copied to clipboard
The Docker CLI
**Description** The `docker login` command should ideally support a new `--tls-verify` option for marking insecure registries at runtime. **Current methodology:** Currently, any insecure registries must be added to the `daemon.json`...
**Description** `ARG` variables of the same name as an environment variable set in a base image do not overwrite the value of the variable during build time. Is it intentional...
- backport https://github.com/docker/cli/pull/5393 The `.variables` sets `CGO_ENABLED=1` on arm; https://github.com/docker/cli/blob/b0c41b78d8c80c5f8faa736cf3c74dc31092e443/scripts/build/.variables#L57-L68 And if enabled, it sets `-buildmode=pie`; https://github.com/docker/cli/blob/b0c41b78d8c80c5f8faa736cf3c74dc31092e443/scripts/build/.variables#L79-L88 But that looks to be conflicting with the hardcoded `CGO_ENABLED=0` in this script,...
**- What I did** **- How I did it** **- How to verify it** **- Description for the changelog** **- A picture of a cute animal (not mandatory but encouraged)**
### Description https://github.com/docker/cli/blob/6273e65ceedc8544765ddc940a4a6dc7c2a2a491/docs/reference/commandline/login.md I noticed there's some quirky wording about "must be root" and "sudo" on that page that even refers to `docker-machine`; looks like we need to clean up...
- stacked on: https://github.com/docker/cli/pull/5356 Don't show the `Used` column in the image tree view when no image is actually used and the column would be empty. **- A picture of...
### Description In the documentation related to [Running a Docker daemon behind an HTTPS_PROXY](https://docs.docker.com/reference/cli/dockerd/#running-a-docker-daemon-behind-an-https_proxy), it's written: ```markdown 2. Ask your network admin for the proxy's CA certificate and append them...
### Description Hi, When managing Docker in a complex environment with multiple conflicting Docker versions, we can't simply assume that the full list of docker subcommands and flags are always...
### Description Trying to automate information manipulation using docker cli is complicate as parameters such as human=false or no-trunc are not available consistently. To give some examples: 1) image history...
### Description When pulling an image with a long name, I get the following error: ```repository name must not be more than 255 characters``` To my knowledge, this length limitation...