fix: lower Docker minimum API version to 1.40 for broader compatibility

The minimum Docker API version was reduced from 1.44 to 1.40 to support older Docker installations that do not provide API version 1.44, ensuring the web Wireshark agent can connect to a wider range of Docker environments.
This commit is contained in:
YueGuobin 2026-04-22 16:08:05 +08:00
parent 2240012402
commit e304b19076
No known key found for this signature in database

View File

@ -32,7 +32,7 @@ logger = logging.getLogger(__name__)
# Docker API configuration
DOCKER_SOCKET = "/var/run/docker.sock"
DOCKER_MINIMUM_API_VERSION = "1.44"
DOCKER_MINIMUM_API_VERSION = "1.40"
DOCKER_PREFERRED_API_VERSION = "1.44"