NodeRED keeps restarting on PFC200

The latest Node-RED docker container (currently v3.0) might keep restarting on your PFC200. If you experience this, then you may need modify your docker run command. This is because the latest Node-RED container uses secure computing mode in docker. If the devices kernel does not support this, then you must tell docker to disable it using the –security-opt seccomp:unconfined parameter.
For example, you can use the following command;

docker run --restart unless-stopped -d --name node-red --network=host --security-opt seccomp:unconfined -v node_red_user_data:/data nodered/node-red:latest-minimal

The provisioning tool has been updated accordingly.
https://github.com/braunku/pfc-provisioning-tool

4 Likes