https://github.com/zrougamed/tigerflow
TigerGraph TigerFlow :rocket: based on Node Red
https://github.com/zrougamed/tigerflow
docker docker-image nodered tigerflow tigergraph
Last synced: 3 months ago
JSON representation
TigerGraph TigerFlow :rocket: based on Node Red
- Host: GitHub
- URL: https://github.com/zrougamed/tigerflow
- Owner: zrougamed
- License: apache-2.0
- Created: 2021-04-29T20:08:04.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-24T10:26:27.000Z (almost 4 years ago)
- Last Synced: 2025-01-11T16:50:18.877Z (4 months ago)
- Topics: docker, docker-image, nodered, tigerflow, tigergraph
- Language: Shell
- Homepage:
- Size: 551 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# TigerGraph TigerFlow Docker
[](https://greenkeeper.io/)
[](https://travis-ci.org/node-red/node-red-docker)
[](https://hub.docker.com/r/nodered/node-red/)
[](https://hub.docker.com/r/nodered/node-red/)available at https://hub.docker.com/r/graphflow/tigerflow.
## Quick Start
To run in Docker in its simplest form just run:docker run -it -p 1880:1880 -v tigerflow-data:/data --name myTigerGraphPipeLine graphflow/tigerflow
Let's dissect that command:
docker run - run this container, initially building locally if necessary
-it - attach a terminal session so we can see what is going on
-p 1880:1880 - connect local port 1880 to the exposed internal port 1880
-v tigerflow-data:/data - mount the host node_red_data directory to the container /data directory so any changes made to flows are persisted
--name myTigerGraphPipeLine - give this machine a friendly local name
graphflow/tigerflow - the image to base it on