Khushiyant

Results 41 comments of Khushiyant

Yes, I checked that in documentation [here](https://docker-py.readthedocs.io/en/stable/containers.html?highlight=exec_run#docker.models.containers.Container.exec_run) and it seems very easily solvable as below: ``` diff + exec_output = tuple(b'' if x is None else x for x in...

@milas @thaJeztah Could you add feature request label? Also, I thinking on working on it

@milas I was thinking implementing a class called `ContainerInfo` with support for properties such as `running`, `ports` etc. What do you recommend for required tests and documentation while implementing that?

@shin- @waynr It is possible to override default cgroup-parent - refer [here](https://docker-py.readthedocs.io/en/stable/containers.html?highlight=cgroup%20parent#docker.models.containers.ContainerCollection.run)

The `APIClient` object in the Docker SDK for Python is not thread-safe. It's recommended to create a separate `APIClient` object within each thread

The problem stems from the way the `use_ssh_client` capability is implemented in the Docker library. When `use_ssh_client` is set to `True`, the library connects to the Docker host using the...

A better approach would be to use a single stream with the `demux` parameter set to `True`, which allows you to differentiate between stdout and stderr logs.

Ok, I get it. Let's what I can do. But, It might be delayed since it is not on next release priority

@milas I'll try to work on it, and I'll open a Draft PR for you to see. > Docker engine PR ([moby#45687](https://github.com/moby/moby/pull/45687)) that added support for volume subpath

Implemented this PR logic in cppyy (frontend) - [cppyy#255](https://github.com/wlav/cppyy/pull/255/) instead