Since yesterday my HA instance, which has been running for months using the following docker compose:
docker-compose.yml
services:
homeassistant:
container_name: home-assistant
image: ghcr.io/home-assistant/home-assistant:stable
volumes:
- /ssd_data/home-assistant:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
devices:
- /dev/ttyUSB0:/dev/ttyUSB0
environment:
- TZ=Europe/Amsterdam
restart: always
privileged: true
network_mode: host
is not reachable anymore after startup is complete.
It is still reachable during startup, so that I see my dashboard with missing entities, and some messages on the bottom “Starting xxx. Not everything will be available until it is finished.” and progressively some “integration xxx is loaded”.
Anyway, after the startup is complete, I cannot access it anymore.
I don’t get “host unreachable” like I get when I completely stop the container, it just stays with the loading circle.
Same on mobile.
The rest of the containers and my server (Ubuntu LTS 24.04.3) are otherwise perfectly running. Just in case, I rebooted it.
It suspiciously matches the update of 2026.2.2, which was installed automatically via watchtower.
I started the container again with docker compose -f docker-compose.yml up to see what’s going on and I have the following messages.
Keep in mind that I haven’t added or updated third party integrations for a while, so the warnings about third party integrations are unlikely to cause the issue.
docker 'up' output
home-assistant | s6-rc: info: service s6rc-oneshot-runner: starting
home-assistant | s6-rc: info: service s6rc-oneshot-runner successfully started
home-assistant | s6-rc: info: service fix-attrs: starting
home-assistant | s6-rc: info: service fix-attrs successfully started
home-assistant | s6-rc: info: service legacy-cont-init: starting
home-assistant | s6-rc: info: service legacy-cont-init successfully started
home-assistant | s6-rc: info: service legacy-services: starting
home-assistant | services-up: info: copying legacy longrun home-assistant (no readiness notification)
home-assistant | s6-rc: info: service legacy-services successfully started
home-assistant | 2026-02-15 09:48:13.780 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration moonraker which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.781 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration entsoe which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.781 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration thermal_comfort which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.782 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration frank_energie which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.782 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration localtuya which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.782 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration apsystems_ecu_reader which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.783 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration astroweather which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.784 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dewpoint which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.784 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration config_editor which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:13.785 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
home-assistant | 2026-02-15 09:48:14.914 WARNING (Recorder) [homeassistant.components.recorder.util] The system could not validate that the sqlite3 database at //config/home-assistant_v2.db was shutdown cleanly
home-assistant | 2026-02-15 09:48:14.947 WARNING (Recorder) [homeassistant.components.recorder.util] Ended unfinished session (id=648 from 2026-02-15 08:47:53.907603)
home-assistant | 2026-02-15 09:48:17.973 WARNING (ImportExecutor_0) [py.warnings] /usr/local/lib/python3.13/site-packages/miio/miot_device.py:23: FutureWarning: functools.partial will be a method descriptor in future Python versions; wrap it in enum.member() if you want to preserve the old behavior
home-assistant | Bool = partial(_str2bool)
home-assistant |
home-assistant | 2026-02-15 09:48:26.952 WARNING (MainThread) [custom_components.moonraker] Cannot configure moonraker instance
home-assistant | 2026-02-15 09:48:26.952 ERROR (MainThread) [moonraker_api.websockets.websocketclient] Websocket connection error: Cannot connect to host 192.168.3.230:7125 ssl:default [Connect call failed ('192.168.x.y', 7125)]
Any way to fix whatever is not working anymore? point release should not cause disruptions.