docker-py
docker-py copied to clipboard
A Python library for the Docker Engine API
Addresses the inconsistency of how the `run` API behaves from the `docker run` behavior. Signed-off-by: Robert Wlodarczyk
Fixes #2278, which was originally addressed in #2279, but was not properly merged. Additionally it did not address the problem of poll not existing on Windows. This patch falls back...
This is an attempt to support all documented properties for the container update API. Currenlty the test case fails, it seems that updating `DeviceCgroupRules` in fact is not working. I...
**I started a container with python sdk, but the sdk cannot obtain the network information of the container (other information is correct), but the network information can be viewed correctly...
Hello Docker maintainers. Looking at the number of open issues and no response from the team within the issues it looks like the Python API is abandoned and won't be...
See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerCreate. Closes #2849.
Fix the pulling issue stated in #2635. Basically, similar to `docker create` it should pull the image if it does not exist locally.
Don't close the SSH connection for the subsequent requests. For the paramiko client option (`use_ssh_client=False`) there was some kind of reuse but it reuses on per-URL basis for some reason....