Node-red on SAP Cloud Platform (Cloud Foundry)

Hi,

I'd like to use node-red on the cloud-foundry environment of SAP.
Has anyone been able to get it run on the SAP Cloud Platform?

If so, could you please share your steps?

Kind regards,
Andreas

Hello
Me too, I am interested by this possibility
In the palette, teher is something dedicated to SAP, bit with nearly no help to know what must be programmed and how.
Can I have some help?

Hi guys, i did it, and it's very simple.
Install CF command line.

Install docker on your pc, install node-red by command-line:
docker run -it -p 1880:1880 --name nameofnodered nodered/node-red

then, connect your cloudfoundry with SCP: cf login (see documentation online)

then push your docker images: cf push APP-NAME --docker-image REPO/IMAGE:TAG
(get information from command: docker images)

now the only issue is everytime you stop/restart the application with node-red u will lose your flows... i'm trying to find a solution :slight_smile:

Hi Andreas.
Please find the whole documentation in SAP SCN Community.
All about Node-Red deployment in SAP Cloud Foundry

1 Like

Hi @sabarna17 - that looks like a very useful blog post - thanks for sharing.