The mitmproxy role uses the deprecated docker module to set up mitmproxy. Post the Docker nuke (#1104), applying this role fails due to a bunch of Docker IPC differences.
This PR switches the mitmproxy role to use the newer docker_container module. To do this, there's a bunch of pip upgrades that need to happen, which this PR handles.
Ansible's
docker
module has been deprecated in favour of thedocker_container
anddocker_image
modules.The mitmproxy role uses the deprecated
docker
module to set up mitmproxy. Post the Docker nuke (#1104), applying this role fails due to a bunch of Docker IPC differences.This PR switches the mitmproxy role to use the newer
docker_container
module. To do this, there's a bunch of pip upgrades that need to happen, which this PR handles.