Quick links : Home - Part 1 - Part 2 - Part 3 - Part 4 - Part 5
Part 5 - Codebase - Dependencies - Config - Backing services - Build, release, run - Processes - Port binding - Concurrency - Disposability - Dev/prod parity - Logs - Admin processes
VII - Port binding
Export services via port binding
Node-RED is a Node.js application, so it is possible to get it to listen on any port, or allow the port to be provided as runtime configuration. However, containers provide a port binding capability, so Node-RED can expose a port in the container and at runtime the port can be bound to and port on the host system.
In docker this is the -p command line option.
Part 5 - Codebase - Dependencies - Config - Backing services - Build, release, run - Processes - Port binding - Concurrency - Disposability - Dev/prod parity - Logs - Admin processes
Quick links : Home - Part 1 - Part 2 - Part 3 - Part 4 - Part 5