https://github.com/twocolors/node-red-docker
Repository for all things Node-RED and Docker related
https://github.com/twocolors/node-red-docker
Last synced: 3 months ago
JSON representation
Repository for all things Node-RED and Docker related
- Host: GitHub
- URL: https://github.com/twocolors/node-red-docker
- Owner: twocolors
- License: mit
- Created: 2022-09-07T07:37:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T12:35:49.000Z (about 1 year ago)
- Last Synced: 2024-04-01T13:51:53.771Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 35.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node-RED Docker
This project from origanl [Node-RED Docker](https://github.com/node-red/node-red-docker/tree/master/docker-custom) based on **Debian** with dev tools and ffmpeg
This projects i make for support [node-red-contrib-tfjs-coco-ssd](https://flows.nodered.org/node/node-red-contrib-tfjs-coco-ssd) on Raspberry Pi 4, more information in [Issues#2](https://github.com/dceejay/tfjs-coco-ssd/issues/2)
### Architecture
Node-RED Docker is supported by manifest list, which means one doesn't need to specify the tag for a specific architecture. Using the image without any tag or the latest tag, will pull the right image for the architecture required.Currently, Node-RED Docker has support for multiple architectures:
- `amd64` : based on linux bookworm-slim - for most desktop computer (e.g. x64, x86-64, x86_64)
- `arm32v7` : based on linux bookworm-slim - (i.e. Raspberry Pi 2, 3, 4)
- `arm64v8` : based on linux bookworm-slim - (i.e. Pine64)**Note**: Currently there is a not official image NodeJS based on Debian architecture `arm32v6`
### Install
```bash
docker pull ghcr.io/twocolors/node-red-docker
```### Quick Start
```bash
docker run -it --net=host -v :/data --name=node-red ghcr.io/twocolors/node-red-docker
```