I try to install latest version of homeassistant inside docker container. But the container keeps restarting. Any help is appreciated.
user@homelab:~$ sudo docker logs hass
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] udev.sh: executing...
exec: fatal: unable to exec bashio: No such file or directory
[cont-init.d] udev.sh: exited 127.
[cont-finish.d] executing container finish scripts...
[cont-finish.d] done.
[s6-finish] waiting for services.
[s6-finish] sending all processes the TERM signal.
[s6-finish] sending all processes the KILL signal and exiting.
version: '3'
services:
home-assistant:
image: homeassistant/home-assistant:stable
container_name: "hass"
restart: always
ports:
- 8123:8123
volumes:
- /home/user/homeassistant/config:/config
network_mode: "host"
Tried the following
- removed all unused containers, volumes, images and pulled latest version. Still not working
- updated docker to latest version, still not working.