Replies: 3 comments
-
Hi @andrewzah for extension services, you can provide the environment variable For the reverse proxy configuration in the UI, you can change the default nginx configuration from https://github.com/apache/streampipes/blob/dev/ui/nginx_config/default.conf and add a volume mapping. Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
@dominikriemer
services:
ui:
image: apachestreampipes/ui:0.95.0-SNAPSHOT
environment:
SP_HTTP_SERVER_ADAPTER_ENDPOINT: 'ext:8090'
ports:
- "80:8088"
core:
image: docker.io/apachestreampipes/backend:0.93.0
ports:
- "8030"
- "8090"
environment:
SP_INITIAL_ADMIN_EMAIL: '[email protected]'
SP_INITIAL_ADMIN_PASSWORD: 'admin'
SP_COUCHDB_HOST: couchdb
SP_DEBUG: true
ext:
image: docker.io/apachestreampipes/extensions-all-jvm:0.93.0
ports:
- "8030"
- "8090"
environment:
SP_DEBUG: true
SP_COUCHDB_HOST: couchdb
SP_CORE_HOST: core |
Beta Was this translation helpful? Give feedback.
-
Nevermind. I missed that setting SP_DEBUG messes with network routing. |
Beta Was this translation helpful? Give feedback.
-
The docs link to a docker-compose.yml, but things seem to expect hardcoded dns names, such as
backend
. The Environment Variables page doesn't seem to mention them. How can I connect these services without hardcoded DNS?Beta Was this translation helpful? Give feedback.
All reactions