2022-10-31 08:26:25 +01:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
services:
|
2022-12-06 11:33:45 +01:00
|
|
|
exliquid-task-store:
|
2023-03-09 11:16:34 +01:00
|
|
|
image: docker.verbis.dkfz.de/cache/samply/blaze:0.19
|
2022-12-06 11:33:45 +01:00
|
|
|
container_name: bridgehead-exliquid-task-store
|
2022-10-31 08:26:25 +01:00
|
|
|
environment:
|
2022-12-06 11:33:45 +01:00
|
|
|
BASE_URL: "http://bridgehead-exliquid-task-store:8080"
|
2022-10-31 08:26:25 +01:00
|
|
|
JAVA_TOOL_OPTIONS: "-Xmx1g"
|
|
|
|
volumes:
|
2022-12-06 11:33:45 +01:00
|
|
|
- "exliquid-task-store-data:/app/data"
|
2022-10-31 08:26:25 +01:00
|
|
|
labels:
|
|
|
|
- "traefik.enable=false"
|
|
|
|
|
2022-12-06 11:33:45 +01:00
|
|
|
exliquid-report-hub:
|
2023-03-09 11:16:34 +01:00
|
|
|
image: docker.verbis.dkfz.de/cache/samply/report-hub:latest
|
2022-12-06 11:33:45 +01:00
|
|
|
container_name: bridgehead-exliquid-report-hub
|
2022-10-31 08:26:25 +01:00
|
|
|
environment:
|
2022-12-06 11:33:45 +01:00
|
|
|
SPRING_WEBFLUX_BASE_PATH: "/exliquid"
|
2022-10-31 08:26:25 +01:00
|
|
|
JAVA_TOOL_OPTIONS: "-Xmx1g"
|
2023-01-04 14:00:08 +01:00
|
|
|
APP_BEAM_APPID: "report-hub.${PROXY_ID}"
|
|
|
|
APP_BEAM_SECRET: ${REPORTHUB_BEAM_SECRET_SHORT}
|
2022-12-12 10:41:18 +01:00
|
|
|
APP_BEAM_PROXY_BASEURL: http://beam-proxy:8081
|
2022-12-06 11:33:45 +01:00
|
|
|
APP_TASKSTORE_BASEURL: "http://bridgehead-exliquid-task-store:8080/fhir"
|
2022-12-05 13:18:14 +01:00
|
|
|
APP_DATASTORE_BASEURL: http://bridgehead-ccp-blaze:8080/fhir
|
2022-10-31 08:26:25 +01:00
|
|
|
restart: always
|
|
|
|
labels:
|
|
|
|
- "traefik.enable=true"
|
2022-12-06 11:33:45 +01:00
|
|
|
- "traefik.http.routers.report-ccp.rule=PathPrefix(`/exliquid`)"
|
2022-10-31 11:26:00 +01:00
|
|
|
- "traefik.http.services.report-ccp.loadbalancer.server.port=8080"
|
|
|
|
- "traefik.http.routers.report-ccp.tls=true"
|
2022-10-31 08:26:25 +01:00
|
|
|
|
|
|
|
volumes:
|
2022-12-06 11:33:45 +01:00
|
|
|
exliquid-task-store-data:
|