Skip to content

zrougamed/TigerFlow

Repository files navigation

TigerGraph TigerFlow Docker

Greenkeeper badge Build Status DockerHub Pull DockerHub Stars

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