Pipeline web application via Docker: Unable to communicate with the Pipeline 2 Engine. #876
-
|
Hi,
Starting it with and If I try I can add a user/ admin but get this error:
See: I'm on ubuntu 24. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
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 Then, you can go to Administrator settings > Pipeline 2 Web API, and fill out the authentication details. For this to work, you should use the tag "v2.7.1", because unfortunately "latest" is not pointing to the latest version. An authentication bug was fixed in version 2.7.1. The alternative is to disable authentication on the server. This can be done by passing an environment variable: |
Beta Was this translation helpful? Give feedback.
-
|
OK, thank you, that seems to work. But if I try to validate old, previously successfully validated DTBs, I get always this Error with the pipeline and webui running via docker:
The Docker containers are: I will mark your answer. But unfortunately, the main problem, that I'm not able to get DTB 2.02. validating running on ubuntu 24 remains. Neither with normal or Docker installed pipeline. |
Beta Was this translation helpful? Give feedback.
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
--nameand--linkarguments, and theDAISY_PIPELINE2_URLenvironment variable):Then, you can go to Administrator settings > Pipeline 2 Web API, and fill out the authentication details.
For this to work, you should use…