bridgehead/ccp/docker-compose.yml

116 lines
3.6 KiB
YAML
Raw Normal View History

version: "3.7"
services:
traefik:
container_name: bridgehead-traefik
2022-05-09 13:52:20 +02:00
image: traefik:latest
command:
- --entrypoints.web.address=:80
- --entrypoints.websecure.address=:443
- --providers.docker=true
- --providers.docker.exposedbydefault=false
- --providers.file.directory=/configuration/
2022-09-07 11:09:53 +02:00
- --api.dashboard=true
2022-10-28 11:41:15 +02:00
- --accesslog=true
- --entrypoints.web.http.redirections.entrypoint.to=websecure
- --entrypoints.web.http.redirections.entrypoint.scheme=https
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashboard.rule=PathPrefix(`/api`) || PathPrefix(`/dashboard`)"
- "traefik.http.routers.dashboard.entrypoints=websecure"
- "traefik.http.routers.dashboard.service=api@internal"
- "traefik.http.routers.dashboard.tls=true"
- "traefik.http.routers.dashboard.middlewares=auth"
- "traefik.http.middlewares.auth.basicauth.users=${LDM_LOGIN}"
ports:
- 80:80
- 443:443
volumes:
2022-10-17 15:21:12 +02:00
- /etc/bridgehead/traefik-tls:/certs:ro
2022-10-11 13:28:51 +02:00
- ../lib/traefik-configuration/:/configuration:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
forward_proxy:
2022-05-05 08:52:09 +02:00
container_name: bridgehead-forward-proxy
2022-10-11 18:36:42 +02:00
image: samply/bridgehead-forward-proxy:latest
environment:
2022-10-11 18:29:08 +02:00
HTTPS_PROXY: ${HTTPS_PROXY_URL}
USERNAME: ${HTTPS_PROXY_USERNAME}
PASSWORD: ${HTTPS_PROXY_PASSWORD}
volumes:
2022-10-11 18:29:08 +02:00
- /etc/bridgehead/trusted-ca-certs:/docker/custom-certs/:ro
landing:
container_name: bridgehead-landingpage
2022-05-11 09:05:23 +02:00
image: samply/bridgehead-landingpage:master
labels:
- "traefik.enable=true"
- "traefik.http.routers.landing.rule=PathPrefix(`/`)"
- "traefik.http.services.landing.loadbalancer.server.port=80"
- "traefik.http.routers.landing.tls=true"
2022-05-10 11:52:38 +02:00
environment:
HOST: ${HOST}
PROJECT: ${PROJECT}
SITE_NAME: ${SITE_NAME}
blaze:
2023-01-31 15:44:30 +01:00
image: "samply/blaze:0.19"
container_name: bridgehead-ccp-blaze
environment:
2022-09-07 11:09:53 +02:00
BASE_URL: "http://bridgehead-ccp-blaze:8080"
JAVA_TOOL_OPTIONS: "-Xmx4g"
LOG_LEVEL: "debug"
ENFORCE_REFERENTIAL_INTEGRITY: "false"
volumes:
2022-10-11 18:29:08 +02:00
- "blaze-data:/app/data"
labels:
- "traefik.enable=true"
- "traefik.http.routers.blaze_ccp.rule=PathPrefix(`/ccp-localdatamanagement`)"
- "traefik.http.middlewares.ccp_b_strip.stripprefix.prefixes=/ccp-localdatamanagement"
- "traefik.http.services.blaze_ccp.loadbalancer.server.port=8080"
2022-11-03 17:19:15 +01:00
- "traefik.http.routers.blaze_ccp.middlewares=ccp_b_strip,auth"
- "traefik.http.routers.blaze_ccp.tls=true"
2022-09-07 11:09:53 +02:00
spot:
2022-09-29 16:33:50 +02:00
image: samply/spot:latest
container_name: bridgehead-spot
environment:
2022-09-30 16:05:36 +02:00
SECRET: ${SPOT_BEAM_SECRET_LONG}
APPID: spot
2022-09-07 11:09:53 +02:00
PROXY_ID: ${PROXY_ID}
2022-09-30 16:05:36 +02:00
LDM_URL: http://bridgehead-ccp-blaze:8080/fhir
2022-09-07 11:09:53 +02:00
BEAM_PROXY: http://beam-proxy:8081
depends_on:
- "beam-proxy"
- "blaze"
beam-proxy:
2023-02-03 13:28:44 +01:00
image: samply/beam-proxy:main
2022-09-07 11:09:53 +02:00
container_name: bridgehead-beam-proxy
environment:
BROKER_URL: ${BROKER_URL}
PROXY_ID: ${PROXY_ID}
2022-09-30 16:05:36 +02:00
APP_0_ID: spot
APP_0_KEY: ${SPOT_BEAM_SECRET_SHORT}
APP_1_ID: report-hub
APP_1_KEY: ${REPORTHUB_BEAM_SECRET_SHORT}
PRIVKEY_FILE: /run/secrets/proxy.pem
2022-09-29 16:31:35 +02:00
ALL_PROXY: http://forward_proxy:3128
2022-10-11 18:29:08 +02:00
TLS_CA_CERTIFICATES_DIR: /conf/trusted-ca-certs
ROOTCERT_FILE: /conf/root.crt.pem
secrets:
- proxy.pem
2022-09-07 11:09:53 +02:00
depends_on:
- "forward_proxy"
2022-10-11 18:29:08 +02:00
volumes:
- /etc/bridgehead/trusted-ca-certs:/conf/trusted-ca-certs:ro
- ./root.crt.pem:/conf/root.crt.pem:ro
volumes:
blaze-data:
secrets:
proxy.pem:
2022-09-30 16:05:36 +02:00
file: /etc/bridgehead/pki/${SITE_ID}.priv.pem