Update information in home assistant intallation docs?

What does “docker rm homeassistant” actually do ? Does configurations remain ?

It removes the container, but not the data.

However, you should use a Compose file instead of the docker run command. Then your updates are simpler:

docker compose pull homeassistant
docker compose up -d homeassistant

Awesome, thank you :slight_smile: