At home my Home Assistant instance runs on a Raspberry PI 4 in Docker.
I wondered why my Home Assistant install was not up to date.
I was using homeassistant/raspberrypi4-homeassistant as the image. But since 2023.7 these images don’t receive updates, as announced in the breaking changes section of the release notes. (which I did no read, shame on me).
To resolve the issue I opened my docker-compose.yaml file, and replaced:
homeAssistant:
container_name: homeAssistant
image: homeassistant/raspberrypi4-homeassistant:stable
With:
homeAssistant:
container_name: homeAssistant
image: ghcr.io/home-assistant/home-assistant:stable
And restarted my containers. All is fine now.