An open API service indexing awesome lists of open source software.

https://github.com/crusaider/rpi-node-red

Docker image combatible with Rasbian PI runnig Node-RED in a docker container on your PI.
https://github.com/crusaider/rpi-node-red

Last synced: 3 months ago
JSON representation

Docker image combatible with Rasbian PI runnig Node-RED in a docker container on your PI.

Awesome Lists containing this project

README

        

# crusaider/rpi-node-red
Docker image combatible with Raspbian PI runnig Node-RED in a docker container on your PI.
## Content
The image contains a default installation of Node-RED v0.13.4 running on top of Node.js v4.4.3. The base of the image is [hypriot/rpi-node:4.4.3-wheezy](https://hub.docker.com/r/hypriot/rpi-node/).
## Configuration
The image contains a `/node-red` directory where the default `setting.js` file is placed. The `user-dir` is located in `/node-red/user-dir`. Any flows you create will be stored in `/node-red/user-dir/flows.js`
## Running
You can start the image with the following command on you Raspbian PI:
```
$ docker run -d -v /home/pi/node-red-user-dir:/node-red/user-dir -p 1880:1880 --restart=unless-stopped --name=node-red crusaider/rpi-node-red
```
This will start a container named `node-red` running in the backround. The container will start when the Docker daemon starts (i.e. when your PI boots up). The directory `/home/home/pi/node-red-user-dir` will be mounted on the container and the `flows.js` will be saved in that directory.
## Source
[Source Repository](https://github.com/crusaider/rpi-node-red)

[Docker Hub](https://hub.docker.com/r/crusaider/rpi-node-red/)
## License

The MIT License (MIT)

Copyright (c) 2016 Jonas Andreasson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.