You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to get the Docker listener going on a Debian 12 client I noticed that when running
pip3 install docker==6.0.0 urllib3==1.26.18
the requests module was installed with version 2.32.3. This version breaks the docker module (see also: docker/docker-py#3256). Reverting to 2.31.0did the trick. So, maybe the documentation should be updated to use the following command to get the Docker listener up and running correctly:
Hi!
Trying to get the Docker listener going on a Debian 12 client I noticed that when running
pip3 install docker==6.0.0 urllib3==1.26.18
the
requests
module was installed with version2.32.3
. This version breaks thedocker
module (see also: docker/docker-py#3256). Reverting to2.31.0
did the trick. So, maybe the documentation should be updated to use the following command to get the Docker listener up and running correctly:pip3 install docker==6.0.0 urllib3==1.26.18 requests==2.31.0
Regards,
Holger
The text was updated successfully, but these errors were encountered: