Recently I started to get issues with zeroconf in my docker setup. I am running the official pi3 image. During startup I get the following error message:
Error during setup of component zeroconf
Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/homeassistant/setup.py", line 145, in _async_setup_component
component.setup, hass, processed_config)
File "/usr/lib/python3.6/asyncio/futures.py", line 332, in __iter__
yield self # This tells Task to wait for completion.
File "/usr/lib/python3.6/asyncio/tasks.py", line 250, in _wakeup
future.result()
File "/usr/lib/python3.6/asyncio/futures.py", line 245, in result
raise self._exception
File "/usr/lib/python3.6/concurrent/futures/thread.py", line 56, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/lib/python3.6/site-packages/homeassistant/components/zeroconf.py", line 33, in setup
zeroconf = Zeroconf()
File "/usr/lib/python3.6/site-packages/zeroconf.py", line 1670, in __init__
socket.inet_aton(_MDNS_ADDR) + socket.inet_aton(i))
OSError: [Errno 105] No buffer space available
It already started with version 0.64.3 and it is still there with 0.65.5. I think it must be related to my overall setup, since it appeared without upgrading my home assistant version. I changed some other containers on my system, but since they should be isolated, I can`t imagine the root of this issue.
Any ideas where I could start to debug?