Skip to content

Instantly share code, notes, and snippets.

@delabassee
Created March 28, 2019 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delabassee/e044db1e650af8fe5fe113cd7d3a83d3 to your computer and use it in GitHub Desktop.
Save delabassee/e044db1e650af8fe5fe113cd7d3a83d3 to your computer and use it in GitHub Desktop.
FNSERVER_IP=$(docker inspect --type container -f '{{.NetworkSettings.IPAddress}}' fnserver)
docker run --rm -d \
-p 8081:8081 \
-e API_URL="http://$FNSERVER_IP:8080/invoke" \
-e no_proxy=$FNSERVER_IP \
--name flowserver \
fnproject/flow:latest
FLOWSERVER_IP=$(docker inspect --type container -f '{{.NetworkSettings.IPAddress}}' flowserver)
docker run --rm \
-p 3000:3000 \
-p 3001:3001 \
-d \
--name bristol \
tteggel/bristol
docker run --rm \
-p 3002:3000 \
-d \
--name flowui \
-e API_URL=http://$FNSERVER_IP:8080 \
-e COMPLETER_BASE_URL=http://$FLOWSERVER_IP:8081 \
delabassee/ddflowui
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment