Can't connect python module to local docker ors instance

Hi all,
thank you for your feedback, and thanks very very much for the bug fix. I have tried the new release, and can confirm that the python TypeError: 'NoneType' object is not iterable error has gone. As for the combinations, here’s what I got:

'b_url': localhost:8080/ors, endpoint: /v2/directions/driving-car --> Nope ('No connection adapters were found for 'localhost:8080/ors/v2/directions/driving-car'')
'b_url': localhost:8080/ors, endpoint: /v2/directions/driving-car/json --> Nope ('No connection adapters were found for 'localhost:8080/ors/v2/directions/driving-car/json'')
'b_url': http://localhost:8080/ors, endpoint: /v2/directions/driving-car --> Nope ('HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /ors/v2/directions/driving-car (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f36a2f98ee0>: Failed to establish a new connection: [Errno 111] Connection refused'))')
'b_url': http://localhost:8080/ors, endpoint: /v2/directions/driving-car/json --> Nope ('HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /ors/v2/directions/driving-car/json (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f36a2fb8400>: Failed to establish a new connection: [Errno 111] Connection refused'))')
'b_url': 0.0.0.0:8080/ors, endpoint: /v2/directions/driving-car --> Nope ('No connection adapters were found for '0.0.0.0:8080/ors/v2/directions/driving-car'')
'b_url': 0.0.0.0:8080/ors, endpoint: /v2/directions/driving-car/json --> Nope ('No connection adapters were found for '0.0.0.0:8080/ors/v2/directions/driving-car/json'')
'b_url': http://0.0.0.0:8080, endpoint: /v2/directions/driving-car --> Nope ('HTTP Error: 404')
'b_url': http://0.0.0.0:8080, endpoint: /v2/directions/driving-car/json --> Nope ('HTTP Error: 404')
'b_url': 127.0.0.1:8080/ors, endpoint: /v2/directions/driving-car --> Nope ('No connection adapters were found for '127.0.0.1:8080/ors/v2/directions/driving-car'')
'b_url': 127.0.0.1:8080/ors, endpoint: /v2/directions/driving-car/json --> Nope ('No connection adapters were found for '127.0.0.1:8080/ors/v2/directions/driving-car/json'')
'b_url': http://127.0.0.1:8080/ors, endpoint: /v2/directions/driving-car --> Yeah
'b_url': http://127.0.0.1:8080/ors, endpoint: /v2/directions/driving-car/json --> Yeah

So, there are two occurrences that actually work. Hope it can be useful. Again, thank you for your prompt support.