We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be687d2 commit 96e4ebbCopy full SHA for 96e4ebb
bugzoo/container.py
@@ -128,7 +128,7 @@ def ip_address(self,
128
"""
129
# TODO: refactor!
130
api_client = docker.APIClient(base_url='unix://var/run/docker.sock')
131
- container_info = api_client.inspect_container(container.id)
+ container_info = api_client.inspect_container(self.container.id)
132
address = container_info['NetworkSettings']['IPAddress']
133
try:
134
return IPv4Address(address)
bugzoo/version.py
@@ -1 +1 @@
1
-__version__ = '1.1.4'
+__version__ = '1.1.5'
0 commit comments