-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Align README info to the latest develop
- Loading branch information
Showing
1 changed file
with
11 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,16 @@ | ||
Docker-node-red | ||
=================== | ||
|
||
A docker file for node-red istance with mongodb storage support and capability to fetch additional module by ENV var. | ||
A docker image to deploy node-red istance. | ||
|
||
The following env vars are used to configure the images: | ||
- PORT: the admin interface port, default 5000 (to support dokku seamless integration) | ||
- AUTH_METHOD: for now only default 'passwd' based auth is supported | ||
- if passwd method is choice the 'admin' password is generated and display in container log | ||
- NODES_URL_FILE: a file url to configure additional nodes from npm | ||
|
||
Features: | ||
|
||
- default admin user `root` | ||
- admin password generate at build time (see log to retrieve it) | ||
- pre-installed mongodb storage | ||
- Installation of additional node-red module from http://flows.nodered.org/. | ||
|
||
Configure module vars | ||
^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
The NODERED_MODULES env var can be used to install additional module at runtime, ex:: | ||
docker run --env NODERED_MODULES="node-red-contrib-deduplicate" <id> | ||
TODO | ||
---- | ||
[ ] add http external auth method | ||
[ ] implement flows backup/restore | ||
[ ] allow template/css personalization |