Skip to content
Discussion options

You must be logged in to vote

The reason for this error is that the web UI, running in the second container, can not "see" the server running in the first container. To fix this, do the following (note the --name and --link arguments, and the DAISY_PIPELINE2_URL environment variable):

docker run --detach \
           --name pipeline \
           -e PIPELINE2_WS_HOST=0.0.0.0 \
           daisyorg/pipeline

docker run --detach \
           --link pipeline \
           -p 9000:9000 \
           -e DAISY_PIPELINE2_URL=http://pipeline:8181/ws \
           daisyorg/pipeline-webui:v2.7.1

Then, you can go to Administrator settings > Pipeline 2 Web API, and fill out the authentication details.

For this to work, you should use…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by tigexplorer
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants