redzilla
redzilla copied to clipboard
Node RED multi-instance manager
redzilla
redzilla manage multiple instances of node-red
Usage
Start the service with docker-compose, by default it will run on port 3000
docker-compose up -d
Create a new instance named hello-world
curl -X POST http://redzilla.localhost:3000/v2/instances/hello-world
Open in the browser
xdg-open http://hello-world.redzilla.localhost:3000/
Done!
Using custom images
ImageName option allow to use local or remote custom images. Example:
ImageName: docker.io/nodered/node-red-docker:latestUse the latest online versionImageName: mycustom/nodered:latestUse themycustom/noderedlocal image
Configuration
See config.example.yml for configuration options.
Environment variables
REDZILLA_NETWORK(default:redzilla) set the network where node-red instances will runREDZILLA_APIPORT(default::3000) changes the API host:port to listen forREDZILLA_DOMAIN(default:redzilla.localhost) set the base domain to listen forREDZILLA_IMAGENAME(default:nodered/node-red-docker) changes thenode-redimage to be spawn (must be somehow compatible to the official one)REDZILLA_STOREPATH(default:./data/store) file store for the container runtime metadataREDZILLA_INSTANCEDATAPATH(default:./data/instances) container instaces data (like setting.js and flows.json)REDZILLA_LOGLEVEL(default:info) log level detailREDZILLA_AUTOSTART(default:false) allow to create a new instance when reaching an activable subdomainREDZILLA_ENVPREFIX(empty by default) filter environment variables by prefix and pass to the created instance. Empty means no ENV are passed. The${PREFIX}_string will be removed from the variable name before passing to the instance. ExampleNODEREDwill matchNODERED_,REDwill matchREDZILLA_andRED_REDZILLA_CONFIGload a configuration file (seeconfig.example.ymlfor reference)
API
List instances
curl -X GET http://redzilla.localhost:3000/v2/instances
Create or start an instance
curl -X POST http://redzilla.localhost:3000/v2/instances/instance-name
Restart an instance (stop + start)
curl -X POST http://redzilla.localhost:3000/v2/instances/instance-name
Stop an instance
curl -X DELETE http://redzilla.localhost:3000/v2/instances/instance-name
Prerequisites
To run redzilla you need docker and docker-compose installed.
License
The MIT license. See LICENSE file for details