Docker install previous HA version

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

The version you choose here is stable. When using docker images you have most time three components

homeassistant/home-assistant:stable

repository/image:tag where the tag is the version. You can go to docker hub and find the needed tag
Solution:

homeassistant/home-assistant:0.106.5
1 Like

worked great, thank you!