docker-py
docker-py copied to clipboard
A Python library for the Docker Engine API
Aim is to be backwards compatible with API < 1.40 while only requiring gpus kwargs be used. Thanks to @sigurdkb for original implementation.
Proposal for the issue raised in #2260.
The image collection in the Docker API allows you to save multiple images into a single bundle. This makes it easy to export and transfer multiple containers together. This feature...
close #2105 according to https://github.com/docker/docker-py/issues/2105#issuecomment-411154477
Allows ignoring `NotFound` exceptions raised by images removed while generating a list of images. Fixes: #2341
my use-case is an app where label filters are stored as tuples, but need to be casted to a list before passing them to an api method in order to...
Service logs are no longer experimental, so updating the tests to only test against "stable" implementations, and no longer test the experimental ones.
Adds the ability to pass `network_alias` as an option to `client.containers.run`. This option is supported in the docker CLI as [`--network-alias`](https://docs.docker.com/v17.09/engine/reference/run/#network-settings). This is available in the low-level CLI, but would...