Update from version 2022.6 or higher not running

My HA (RPi, Docker) runs perfectly with version 2022.5.5.
All later updates are not executable (tested up to 2022.7.0b5), the start is aborted immediately, without any further message. Docker status: Exited (100)
I tried with an empty /config directory, but not even the default files are created.
I minimised the call to the most necessary, which runs without problems with 2022.5.5:
docker run --init -d --name="xxl" --net=host homeassistant/home-assistant:2022.6.7

Hardware: Raspberry Pi 4B
Operating system: Debian GNU/Linux 10 (buster)
Docker installation.

Does anyone have any ideas?

I just saw that minimum docker version was bumped to 20.10.
Maybe related?

My Docker Version is on 20.10.17.
Basically I made an apt-get update & upgrade, so my libraries should up to date…

Breaking change in 2022.6 regarding the init process --init

If you run Home Assistant Container in Docker (e.g., using Portainer, Docker (Compose), QNAP, and others), please make sure you are not specifying an init process.

This can be an init configuration option in your Docker management tools or Docker Compose, or the --init command line flag on the raw Docker command. These should NOT be set, as Home Assistant ships with the S6 init system.

1 Like

Great @! That was it…
Thanks a lot!!