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 928af5a commit a8d4afbCopy full SHA for a8d4afb
core/testcontainers/core/docker_client.py
@@ -95,6 +95,8 @@ def host(self) -> str:
95
# https://github.com/testcontainers/testcontainers-go/blob/dd76d1e39c654433a3d80429690d07abcec04424/docker.go#L644
96
# if os env TC_HOST is set, use it
97
host = os.environ.get('TC_HOST')
98
+ if not host:
99
+ host = os.environ.get('TESTCONTAINERS_HOST_OVERRIDE')
100
if host:
101
return host
102
try:
0 commit comments