Newbie here. I have been running HA on my Synology NAS under Docker. The NAS has a conbee stick attached. This is how I started the container several months ago:
sudo docker run --restart always --detach --name homeassistant -v /volume1/docker/homeassistant/config --device=/dev/ttyACM0 -e TZ=Europe/Amsterdam --net=host homeassistant/home-assistant:stable
In order to upgrade, I followed these steps:
- Stopped the container
- Deleted the container
- Deleted the Docker image
- Downloaded the new stable image
- Ran the command above
I had expected it to use the previous configuration in /volume1/docker/homeassistant/config but when starting the UI it requested a new account and behaved like a new installation.
I did notice that the file dates in /volume1/docker/homeassistant/config are about 4 months old, so I am beginning to wonder whether HA actually stored the config here.
Insights and help appreciated!