I use docker to install home assistant
currently stuck on install hacs.
docker command:
docker run -d --name="home-assistant" \
-v ~/homeAssistant:/config \
-v /media/android:/media \
-v /etc/localtime:/etc/localtime:ro \
--net=host \
homeassistant/home-assistant:stable
then I follow this instruction to install hacs
hacs does show up in " Integrations" but it stuck on “please wait while integration being installed.” for a long time then it go back without any error.
log show:
Logger: aiohttp.server
Source: components/image/__init__.py:208
First occurred: December 6, 2020, 7:44:55 PM (12 occurrences)
Last logged: 5:59:31 AM
Error handling request
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/aiohttp/web_protocol.py", line 418, in start
resp = await task
File "/usr/local/lib/python3.8/site-packages/aiohttp/web_app.py", line 458, in _handle
resp = await handler(request)
File "/usr/local/lib/python3.8/site-packages/aiohttp/web_middlewares.py", line 119, in impl
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/request_context.py", line 18, in request_context_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/ban.py", line 72, in ban_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/auth.py", line 127, in auth_middleware
return await handler(request)
File "/usr/src/homeassistant/homeassistant/components/http/view.py", line 129, in handle
result = await result
File "/usr/src/homeassistant/homeassistant/components/image/__init__.py", line 192, in get
await hass.async_add_executor_job(
File "/usr/local/lib/python3.8/concurrent/futures/thread.py", line 57, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/src/homeassistant/homeassistant/components/image/__init__.py", line 208, in _generate_thumbnail
image = ImageOps.exif_transpose(Image.open(original_path))
File "/usr/local/lib/python3.8/site-packages/PIL/Image.py", line 2878, in open
fp = builtins.open(filename, "rb")
FileNotFoundError: [Errno 2] No such file or directory: '/config/image/010d722b6398d3b010dc50d16e7bd1ab/original'
please help.