Usually this is the command I use to install Home Assistant in docker.
#!/bin/bash
docker pull homeassistant/home-assistant:stable
docker run -d \
--restart=always \
--name=homeassistant \
-h homeassistant \
-e PUID=1001 \
-e PGID=1001 \
-e TZ=Europe/Nicosia \
--net=host \
-v homeassistant:/config \
homeassistant/home-assistant:stable
I’m in a situation where I have to perform a new HA installation, but install version 0.106.5. (which is quite old, I know).
Is it possible to install this version in docker?
Thanks