We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1642e9 commit e91e847Copy full SHA for e91e847
core/testcontainers/core/config.py
@@ -86,7 +86,7 @@ class TestcontainersConfiguration:
86
tc_properties: dict[str, str] = field(default_factory=read_tc_properties)
87
_docker_auth_config: Optional[str] = field(default_factory=lambda: environ.get("DOCKER_AUTH_CONFIG"))
88
tc_host_override: Optional[str] = TC_HOST_OVERRIDE
89
- connection_mode_override: Optional[ConnectionMode] = None
+ connection_mode_override: Optional[ConnectionMode] = field(default_factory=get_user_overwritten_connection_mode)
90
91
"""
92
https://github.com/testcontainers/testcontainers-go/blob/dd76d1e39c654433a3d80429690d07abcec04424/docker.go#L644
0 commit comments