Node-RED not starting after reboot

Hello!

I have installed Node-RED following @WagoKurt s youtube-guide and have it up and running on an CC100

However, after a reboot of the PLC Node-RED is not starting again. Doing the docker container ls command is showing nothing is running. Is there something special you need to do to get it running automatically after a reboot?

Hello,
Thanks for bringing this to my attention. I see that I did not include the --restart unless-stopped parameter!
Please use this command to start the container.
docker run -d --restart unless-stopped --name wago-node-red -d --privileged=true --user=root -p 1880:1880 --security-opt seccomp:unconfined -v node_red_user_data:/data nodered/node-red

I will update the provisioning tool as well.

Thank you for the quick reply and solution @WagoKurt !