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 d33ba88 commit 53de754Copy full SHA for 53de754
docker/utils/utils.py
@@ -166,6 +166,8 @@ def parse_host(addr):
166
addr = addr.strip()
167
if addr.startswith('http://'):
168
addr = addr.replace('http://', 'tcp://')
169
+ if addr.startswith('http+unix://'):
170
+ addr = addr.replace('http+unix://', 'unix://')
171
172
if addr == 'tcp://':
173
raise errors.DockerException("Invalid bind address format: %s" % addr)
0 commit comments