bridgehead/ccp/exliquid-compose.yml

36 lines
1.1 KiB
YAML
Raw Normal View History

2022-10-31 08:26:25 +01:00
version: "3.7"
services:
task-store:
image: "samply/blaze:0.18"
container_name: bridgehead-task-store
environment:
2022-10-31 15:30:32 +01:00
BASE_URL: "http://bridgehead-task-store:8080"
2022-10-31 08:26:25 +01:00
JAVA_TOOL_OPTIONS: "-Xmx1g"
LOG_LEVEL: "debug"
volumes:
- "task-store-data:/app/data"
labels:
- "traefik.enable=false"
report-hub:
image: "samply/report-hub:latest"
container_name: bridgehead-report-hub
environment:
2022-12-05 13:18:14 +01:00
SPRING_WEBFLUX_BASE_PATH: "/ccp-report-hub"
2022-10-31 08:26:25 +01:00
JAVA_TOOL_OPTIONS: "-Xmx1g"
LOG_LEVEL: "debug"
PROXY_ID: "report-hub.${PROXY_ID}"
SECRET: ${REPORTHUB_BEAM_SECRET_SHORT}
2022-12-05 13:18:14 +01:00
APP_TASKSTORE_BASEURL: "http://bridgehead-task-store:8080/fhir"
APP_DATASTORE_BASEURL: http://bridgehead-ccp-blaze:8080/fhir
2022-10-31 08:26:25 +01:00
BEAM_PROXY: "http://beam-proxy:8081"
restart: always
labels:
- "traefik.enable=true"
2022-10-31 11:26:00 +01:00
- "traefik.http.routers.report-ccp.rule=PathPrefix(`/ccp-report-hub`)"
- "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:
task-store-data: