I just updated my NUC software and i just noticed that after i rebooted the NUC the docker containers did not startup.
Do i have to added a start up script?
Thanks
I just updated my NUC software and i just noticed that after i rebooted the NUC the docker containers did not startup.
Do i have to added a start up script?
Thanks
No. How did you create the docker container?
You need to add some restart policy to the container
Docker start --restart=always -p 8123:8123 homeassistant
The “restart=always” or similar policy is what you are likely missing
Thanks i will try it when i get home…