cli
cli copied to clipboard
The Docker CLI
**Description** Please add the ability to see the architecture for images in the cache via `docker images` / `docker image ls`. Even if it's just an additional `--format` field, that...
It's difficult to understand docker run -p syntax. (TO:FROM). It took a while for me to realize where is the "from" part and where is the "to" part. This syntax...
**Description** The "new" docker cli commands all adhere to the `docker [object] [verb]` command. So we new prefer `docker container run` over `docker run`, `docker image rm` over `docker rmi`...
closes #6021 In `Add()` (vendor/github.com/docker/docker/api/types/filters/parse.go), we previously assigned `args.fields[key][value] = true` with "true" being a placeholder. Now, it holds `isEqualOp`, a boolean indicating whether the filter uses `=` (true) or...
Please allow `--entrypoint` to be successfully processed at the end of `docker run`... commands, just like other `docker run` flags.
The scenario here is that we publish an image to a given registry, teams pull these images and test them, then later on we publish the same exact image to...
**Description** I recently looked at one of my context bundles' TLS files in Finder on macOS, which created a `.DS_Store` file. The Finder stores view metadata in `.DS_Store` files. The...
**Description** Running an experimental plugin with non experimental CLI should show a friendly message. The code seams to be [here](https://github.com/docker/cli/pull/1898/files#diff-265afb51869adb4ecbb47af486fa36faR188) already, but something is short-circuiting it. **Steps to reproduce the...
**Description** When `docker exec` cannot find an executable it prints an error. This error should go to standard error (stderr). **Steps to reproduce the issue:** 1. `docker run -d --name...
File: [docs/reference/builder.md](https://github.com/docker/cli/blob/master/docs/reference/builder.md) The Dockerfile reference page does not explicitly says that we can set a range of ports for the EXPOSE instruction. I think it could be a good idea...