Rewrite docker_plugin to not use the Docker SDK for Python (#429)

* Rewrite the docker_plugin module to use the low-level client from Docker SDK for Python.

* Rewrite to no longer use the Docker SDK for Python.

* Remove Docker SDK for Python version from tests.
This commit is contained in:
Felix Fontein
2022-07-14 16:29:37 +02:00
committed by GitHub
parent c00b4ec9be
commit 04121b5882
3 changed files with 49 additions and 43 deletions
@@ -0,0 +1,4 @@
major_changes:
- docker_plugin - no longer uses the Docker SDK for Python. It requires ``requests`` to be installed,
and depending on the features used has some more requirements. If the Docker SDK for Python is installed,
these requirements are likely met (https://github.com/ansible-collections/community.docker/pull/429).