- Notifications
You must be signed in to change notification settings - Fork14
Node RED multi-instance manager
License
muka/redzilla
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
redzilla
manage multiple instances ofnode-red
Start the service withdocker-compose
, by default it will run on port3000
docker-compose up -d
Create a new instance namedhello-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!
ImageName
option allow to use local or remote custom images. Example:
ImageName: docker.io/nodered/node-red-docker:latest
Use the latest online versionImageName: mycustom/nodered:latest
Use themycustom/nodered
local image
Seeconfig.example.yml
for configuration options.
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-red
image 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. ExampleNODERED
will matchNODERED_
,RED
will matchREDZILLA_
andRED_
REDZILLA_CONFIG
load a configuration file (seeconfig.example.yml
for reference)
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
To runredzilla
you needdocker
anddocker-compose
installed.
The MIT license. SeeLICENSE
file for details
About
Node RED multi-instance manager
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.