cli
cli copied to clipboard
The Docker CLI
### Description Docker stack cannot immediately update the created service. > no suitable node (scheduling constraints not satisfied on 14 nodes; host-m… ### Reproduce docker-compose.yml ``` services: edge-de1: image: test-private/test:1.1.3...
### Description When running an image via the `docker run` command you've got the option `--volumes-from`, allowing you to inherit the passed volumes from the referenced Docker containers. It would...
### Description ## Problem Docker logs can grow very large, making it hard to view recent entries without scrolling. ## Solution Add a `--clear` flag to `docker logs` that: -...
### Description #### Problem When running `docker stack deploy`, deployment errors (especially scheduling constraint failures) are truncated in the CLI output. For example: ``` 1/1: no suitable node (scheduling constraints...
The CLI used to put whatever reference to a network the user entered directly into `NetworkAttachmentConfig.Target`. This field is documented to only contain a network ID, so this was the...
**- What I did** Introduce `bind-create-host-path` option to control engine behaviot regarding a missing mount point See `create_host_path` attribute on https://github.com/compose-spec/compose-spec/blob/main/05-services.md#long-syntax-5 **- How I did it** **- How to verify...
### Description Presently, if configuring a docker client (in golang), docker is using the system `ssh` binary by executing a crafted command. This happens in connhelper.go https://github.com/docker/cli/blob/master/cli/connhelper/connhelper.go#L51-L65 Golang offers a...
### Description ## System Information ### Gracehopper ``` ~$ lscpu Architecture: aarch64 CPU op-mode(s): 64-bit Byte Order: Little Endian CPU(s): 72 On-line CPU(s) list: 0-71 Vendor ID: ARM Model name:...
**- What I did** - Added environment variable expansion to the config plugin dirs - Added an example test (I guess 😅 ) Closes #6486 **- How I did it**...
I have an empty ubuntu image on cgroups v1: ``` FROM ubuntu:20.04 ``` I run ``/bin/bash`` in it and it occupies ``1.312MiB`` according to ``docker stats``. I then install python...