diff --git a/development/docker-compose/.env b/development/docker-compose/.env index 2847dfb..dea6e8f 100644 --- a/development/docker-compose/.env +++ b/development/docker-compose/.env @@ -1,2 +1,2 @@ -BB_VERSION=2025.08 +BB_VERSION=2025.09.17-LTS BOOTSTRAP_JOB_VERSION=2025.04 \ No newline at end of file diff --git a/development/docker-compose/docker-compose.yaml b/development/docker-compose/docker-compose.yaml index 3ec4538..221a986 100644 --- a/development/docker-compose/docker-compose.yaml +++ b/development/docker-compose/docker-compose.yaml @@ -25,12 +25,12 @@ x-common-variables: &common-variables spring.main.banner-mode: off spring.cloud.config.enabled: false spring.cloud.kubernetes.enabled: false - backbase.audit.enabled: false + backbase.audit.enabled: true backbase.security.public.paths: /integration-api/** backbase.security.mtls.enabled: false backbase.http.request-logging-filter.max-payload-length: 5000 - logging.level.com.backbase: DEBUG - logging.level.org.springframework.web.filter.CommonsRequestLoggingFilter: DEBUG + logging.level.com.backbase: INFO + logging.level.org.springframework.web.filter.CommonsRequestLoggingFilter: INFO # Observability - Tracing Configuration management.tracing.enabled: false management.tracing.propagation.type: w3c @@ -77,12 +77,37 @@ x-gc-http-config: &gc-http-config "backbase.gc.http.backoff": "1000" x-gc-credentials: &gc-credentials - backbase.gc.party-base-url: "http://caboose:8080" - backbase.gc.payment-base-url: "http://caboose:8080" - backbase.gc.deposit-base-url: "http://caboose:8080" - backbase.gc.loan-base-url: "http://caboose:8080" + backbase.gc.party-base-url: "http://caboose:8080/api" + backbase.gc.payment-base-url: "http://caboose:8080/api" + backbase.gc.deposit-base-url: "http://caboose:8080/api" + backbase.gc.loan-base-url: "http://caboose:8080/api" backbase.gc.subscriptionKey: "" +x-mambu-creds: &mambu-creds + mambu.basePath: "http://caboose:8080/api/mambu/v2" + mambu.baseUrl: "http://caboose:8080/api/mambu/v2" + mambu.branchId: "" + mambu.branchKey: "" + mambu.username: "mock" + mambu.password: "mock" + mambu.ghostAccountId: "ZQGS770" + mambu.ghostAccountIds.USD: "ZQGS770" + mambu.ghostAccountIds.EUR: "ZQGS771" + mambu.pocketProductKey: "8a19d8937a753ef9017a76d183eb3a6c" + mambu.transactionsBeneficiaryAccountKey: "ZQGS770" + mambu.transactionsBeneficiaryAccountKeys.USD: "ZQGS770" + mambu.transactionsBeneficiaryAccountKeys.EUR: "ZQGS771" + mambu.currentAccountProductKeys.USD: "pr-current-account-usd" + mambu.currentAccountProductKeys.EUR: "pr-current-account-eur" + mambu.savingsAccountProductKeys.USD: "pr-saving-account-usd" + mambu.savingsAccountProductKeys.EUR: "pr-saving-account-eur" + mambu.line-of-credit-product-keys.USD: "pr-line-of-credit-usd" + mambu.line-of-credit-product-keys.EUR: "pr-line-of-credit-eur" + mambu.term-loan-product-keys.USD: "pr-term-loan-usd" + mambu.term-loan-product-keys.EUR: "pr-term-loan-eur" + mambu.mortgage-product-keys.USD: "pr-mortgage-usd" + mambu.mortgage-product-keys.EUR: "pr-mortgage-eur" + name: backbase volumes: @@ -114,6 +139,7 @@ services: interval: 10s timeout: 5s retries: 5 + zipkin: image: openzipkin/zipkin container_name: zipkin @@ -123,6 +149,7 @@ services: - STORAGE_TYPE=mem ports: - "9411:9411" + otel-collector: image: otel/opentelemetry-collector-contrib:0.82.0 restart: always @@ -142,6 +169,7 @@ services: - "55679:55679" # zpages extension depends_on: - zipkin + registry: image: repo.backbase.com/backbase-docker-releases/registry:${BB_VERSION} ports: @@ -199,6 +227,7 @@ services: ports: - '8180:8080' environment: + <<: [ *common-variables, *message-broker-variables, *gc-credentials, *gc-api-config, *gc-http-config] KEYCLOAK_ADMIN: "admin" KEYCLOAK_ADMIN_PASSWORD: "admin" BACKBASE_HTTP_CORS: "true" @@ -210,14 +239,21 @@ services: KC_DB_PASSWORD: "root" KC_TRANSACTION_XA_ENABLED: "true" KC_LOG_LEVEL: "INFO" + backbase.audit.enabled: true KC_LOG_CONSOLE_FORMAT: "%d{yyy:MM:dd HH:mm:ss.SSS} %-5p [%X{traceId},%X{spanId},%X{sampled}] %i --- [%t] %c{2.} : %m%n" KC_HOSTNAME_URL: "http://localhost:8180/auth/" KC_SPI_SERVICE_TOKEN_DEFAULT_URL: "http://token-converter:8080" KC_SPI_USER_MANAGER_CLIENT_DEFAULT_URL: "http://user-manager:8080" KC_SPI_CONNECTIONS_JPA_LEGACY_INITIALIZE_EMPTY: "true" KC_SPI_CONNECTIONS_JPA_LEGACY_MIGRATION_STRATEGY: "update" + keycloak.backbase.event-listeners.audit.endpoint: "http://audit-service:8080" + KC_SPI_EVENTS_LISTENER_AUDIT_INTEGRATION_SERVICE_URL: "http://audit-service:8080" + KC_SPI_EVENTS_LISTENER_EVENT_BRIDGE_AUDIT_NO_AUTH_LOCALHOST: "false" + KC_SPI_EVENTS_LISTENER_EVENT_BRIDGE_AUDIT_URL: "http://event-bridge:8080" + # KC_SPI_MOBILE_AUTHENTICATION_CLIENT_DEFAULT_URL: "http://mobile-authentication:8080" JAVA_TOOL_OPTIONS: "-Dquarkus.log.category.'\"com.backbase\"'.level=DEBUG \ - -Dquarkus.log.category.'\"org.keycloak.protocol.oidc\"'.level=TRACE" + -Dquarkus.log.category.'\"org.keycloak.protocol.oidc\"'.level=TRACE \ + ${EXTRA_JAVA_OPTS}" volumes: - ./identity:/opt/keycloak/data/import - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar @@ -311,12 +347,80 @@ services: - activemq - registry + loan-integration-outbound-mock: + image: repo.backbase.com/backbase-docker-releases/loan-integration-outbound-mock:${BB_VERSION} + ports: + - "9055:8080" + environment: + <<: [ *common-variables, *message-broker-variables, *gc-credentials, *gc-api-config, *gc-http-config ] + eureka.instance.appname: loan-integration-outbound-mock + logging.level.root: INFO + logging.level.org.springframework.web.client.RestTemplate: INFO + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + +# loan-integration: +# image: repo.backbase.com/backbase-docker-releases/loan-integration:${BB_VERSION} +# ports: +# - "9054:8080" +# environment: +# <<: [ *common-variables, *message-broker-variables, *gc-credentials, *gc-api-config, *gc-http-config] +# eureka.instance.appname: loan-integration +# logging.level.root: INFO +# logging.level.org.springframework.web.client.RestTemplate: INFO +# volumes: +# - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar +# healthcheck: +# <<: *healthcheck-defaults +# test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] +# depends_on: +# mysql: +# condition: service_healthy +# links: +# - activemq +# - registry + + loan: + image: repo.backbase.com/backbase-docker-releases/loan:${BB_VERSION} + ports: + - "8054:8080" + environment: + <<: [*common-variables, *message-broker-variables, *database-variables] + # backbase.arrangement.arrangement-views.views: arrangement-views + backbase.communication.services.dbs.loan.integration.outbound.service-id: "loan-integration-outbound-mock" + spring.application.name: "loan" + spring.datasource.url: jdbc:mysql://mysql:3306/loan?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true + backbase.arrangement.alias.journey: "USER_ALIAS" + spring.cloud.azure.eventhubs.kafka.enabled: "false" + backbase.loan.payments.payment-option-validation-on-core-banking: "false" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + transaction-manager: - image: repo.backbase.com/backbase-docker-releases/transaction-manager:5.5.0 + image: repo.backbase.com/backbase-docker-releases/transaction-manager:${BB_VERSION} ports: - "8052:8080" environment: - <<: [ *common-variables, *message-broker-variables, *database-variables ] + <<: [ *common-variables, *message-broker-variables, *database-variables, *mambu-creds ] + spring.application.name: "transaction-manager" spring.datasource.url: jdbc:mysql://mysql:3306/transaction-manager?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true "backbase.communication.http.autowire-object-mapper": "true" "backbase.security.csrf.enabled": "false" @@ -335,6 +439,23 @@ services: "backbase.transaction.domain.types": "PAY" "backbase.transaction.domain.typeGroups": "PAY" "backbase.transaction.domain.typeGroupMapping.PAY": "PAY" + "backbase.communication.services.transaction.enrichment.version": "v1" + "backbase.lifecycle.delayed-shutdown.delay": "15s" + "backbase.lifecycle.delayed-shutdown.enabled": "true" + "backbase.tailored-value-proposition.enabled": "true" + "backbase.transaction.domain.typeGroupMapping.Fees": "Fee, Cheques" + "backbase.transaction.domain.typeGroupMapping.Loans": "Deposit, ACH" + "backbase.transaction.domain.typeGroupMapping.Other": "Other" + "backbase.transaction.domain.typeGroupMapping.Payment": "Credit/Debit Card, Bill Payment" + "backbase.transaction.domain.typeGroupMapping.Withdrawal": "ATM, Cash, POS, Withdrawal" + "backbase.transaction.export.csv.dateFormat": "MM/dd/YYYY" + "backbase.transaction.export.csv.fields": "BBAN,name,counterPartyAccountNumber,counterPartyName,currency,amount,creditDebitIndicator,bookingDate,type,typeGroup,reference,instructedCurrency,currencyExchangeRate,instructedAmount,description,category,checkSerialNumber" + "backbase.transaction.export.csv.headers": "Account number(BBAN),Account name,Counter party account number,Counter party name,Currency,Amount,Credit/debit indicator,Book date,Transaction type,Transaction group,Transaction reference,Instructed currency,currency exchange rate,Instructed amount,Description,Category,Check number" + "backbase.transaction.export.ofx.supportedProductTypes": "current-account,savings-account,loan,debit-card,credit-card" + "backbase.transaction.export.pdf.maxItems": "10000" + "backbase.transaction.export.qbo.supportedProductTypes": "current-account,savings-account,loan,debit-card,credit-card" + "backbase.transaction.export.qfx.supportedProductTypes": "current-account,savings-account,loan,debit-card,credit-card" + "backbase.transaction.partition.bookingDateSearchMaxDateRange": "91" volumes: - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar healthcheck: @@ -424,7 +545,6 @@ services: backbase.users.identity-endpoints-enabled: true backbase.users.identity-integration-enabled: true backbase.users.sync-primary-to-identity-enabled: true - spring.cloud.discovery.client.simple.instances.user-integration-outbound-service[0].uri: http://wiremock:8080 backbase.users.realms[0].realm-name: "employee" backbase.users.realms[1].realm-name: "retail" backbase.users.realms[2].realm-name: "business" @@ -460,12 +580,12 @@ services: - registry bootstrap-job: - image: crreference914.azurecr.io/development/bootstrap-job:3.2.0-SNAPSHOT-20250904064858 + image: crreference914.azurecr.io/stable/bootstrap-job:4.4.0 profiles: - bootstrap environment: <<: *common-variables - backbase.bootstrap.data.active-data-sets: minimal-base + backbase.bootstrap.data.active-data-sets: caboose-data, cb-base, cb-retail-usa, cb-business-usa, minimal-transactions backbase.bootstrap.identity.admin-realm: employee backbase.bootstrap.identity.admin-username: admin backbase.bootstrap.identity.master-admin-password: admin @@ -482,7 +602,10 @@ services: backbase.bootstrap.ingestions.approvals.enabled: false backbase.bootstrap.ingestions.regions.enabled: false backbase.bootstrap.ingestions.cards: false - caboose.baseUrl: "http://caboose-spring:8080" + backbase.bootstrap.ingestions.currency-exchange-rate.enabled: true + backbase.bootstrap.ingestions.holidays.enabled: true + backbase.stream.contact.worker.continueOnError: true + caboose.baseUrl: "http://caboose:8080/api" backbase.communication.services.access-control.directUri: http://access-control:8080 backbase.communication.services.limit.directUri: http://limits-service:8080 backbase.communication.services.usermanager.directUri: http://user-manager:8080 @@ -511,6 +634,16 @@ services: backbase.bootstrap.ingestions.plugins.caboose.enabled: true backbase.stream.audiences.segmentation.user-kind.defaultCustomerCategory: RETAIL logging.level.com.backbase.bootstrap: DEBUG + caboose.currentAccountProductKeys.USD: pr-current-account-usd + caboose.currentAccountProductKeys.EUR: pr-current-account-eur + caboose.savingsAccountProductKeys.USD: pr-saving-account-usd + caboose.savingsAccountProductKeys.EUR: pr-saving-account-eur + caboose.line-of-credit-product-keys.USD: pr-line-of-credit-usd + caboose.line-of-credit-product-keys.EUR: pr-line-of-credit-eur + caboose.term-loan-product-keys.USD: pr-term-loan-usd + caboose.term-loan-product-keys.EUR: pr-term-loan-eur + caboose.mortgage-product-keys.USD: pr-mortgage-usd + caboose.mortgage-product-keys.EUR: pr-mortgage-eur # volumes: # # example where you can test your own files # - ./test-data/products-jh.json:/app/resources/modelbank/core-data/base/product-catalog/products-jh.json @@ -530,20 +663,180 @@ services: caboose: condition: service_healthy + balance-history-event-publisher: + image: crreference914.azurecr.io/balance-history-event-publisher:2.0.0 + ports: + - "9083:8080" + environment: + <<: [ *common-variables, *message-broker-variables, *database-variables, *mambu-creds ] + spring.application.name: "balance-history-event-publisher" + spring.datasource.url: jdbc:mysql://mysql:3306/balance-history-event-publisher?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true + BACKBASE_SECURITY_CSRF_ENABLED: "false" + BUILDINGBLOCKS_SECURITY_CSRF_ENABLED: "false" + LOGGING_LEVEL_COM_BACKBASE: "WARN" + LOGGING_LEVEL_ORG_SPRINGFRAMEWORK: "WARN" + LOGGING_LEVEL_ROOT: "WARN" + SERVER_SHUTDOWN: "graceful" + SPRING_PROFILES_INCLUDE: "json-logging" + webhook.username: "mock" + webhook.password: "mock" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + caboose: - image: crreference914.azurecr.io/staging/caboose-spring:2.1.0-SNAPSHOT-20250902073935 + image: backbaseregistry.azurecr.io/docker/caboose:f839a8c ports: - "9001:8080" + #- "5005:5005" environment: - <<: [*common-variables] - SPRING_PROFILES_ACTIVE: local - server.port: 8080 + <<: [*common-variables, *database-variables] + spring.datasource.url: jdbc:mysql://mysql:3306/caboose?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true + caboose.webhook.balance-history.url: http://balance-history-event-publisher:8080/webhook + caboose.webhook.balance-history.username: "mock" + caboose.webhook.balance-history.password: "mock" + #JAVA_TOOL_OPTIONS: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005" volumes: - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar healthcheck: <<: *healthcheck-defaults test: [ "CMD", "java", "-jar", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + # Newly added minimal mobile-authentication service (converted from K8s deployment) +# mobile-authentication: +# image: repo.backbase.com/backbase-docker-releases/mobile-authentication:2025.08.5 +# ports: +# - "9080:8080" +# environment: +# <<: *common-variables +# BACKBASE_SECURITY_CSRF_ENABLED: "false" +# BUILDINGBLOCKS_SECURITY_CSRF_ENABLED: "false" +# EUREKA_CLIENT_ENABLED: "false" +# SPRING_LIQUIBASE_ENABLED: "false" +# SPRING_PROFILES_INCLUDE: json-logging +# SERVER_SHUTDOWN: graceful +# LOGGING_LEVEL_ROOT: INFO +# LOGGING_LEVEL_COM_BACKBASE: INFO +# JAVA_TOOL_OPTIONS: "-XX:MaxRAMPercentage=60.0 -Djava.security.egd=file:/dev/urandom" + + event-listener-service: + image: crreference914.azurecr.io/event-listener-service:1.10.0 + ports: + - "9082:8080" + #- "5005:5005" + environment: + <<: [ *common-variables, *message-broker-variables, *database-variables ] + BACKBASE_SECURITY_CSRF_ENABLED: "false" + BUILDINGBLOCKS_SECURITY_CSRF_ENABLED: "false" + SERVER_SHUTDOWN: "graceful" + SPRING_PROFILES_INCLUDE: "json-logging" + backbase.events.enabled: "true" + logging.level.com.backbase.buildingblocks.backend.security.auth.config.MtlsAuthenticationFilter: "WARN" + #JAVA_TOOL_OPTIONS: "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + + audit-service: + image: repo.backbase.com/backbase-docker-releases/audit-service:${BB_VERSION} + ports: + - "9081:8080" + environment: + <<: [ *common-variables, *message-broker-variables, *database-variables ] + BACKBASE_SECURITY_CSRF_ENABLED: "false" + BUILDINGBLOCKS_SECURITY_CSRF_ENABLED: "false" + LOGGING_LEVEL_COM_BACKBASE: "DEBUG" + LOGGING_LEVEL_ORG_SPRINGFRAMEWORK: "WARN" + LOGGING_LEVEL_ROOT: "WARN" + SERVER_SHUTDOWN: "graceful" + backbase.audit.emitting-events-enabled: "true" + backbase.audit.indexedMetadata.userId: "User ID,External User ID,User,Username,Sender User ID,Recipient ID,Owner ID" + backbase.audit.timeline.eventCategories.no-read: "Identity and Access,Device Management,Message Center,Employee Actions,Comments,Payments,Employee,Push,Email,RTC,SMS,Card Management,Personal Finance Management,Identity User Management" + spring.datasource.url: "jdbc:mysql://mysql:3306/audit?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + + arrangement-pull-integration: + image: crreference914.azurecr.io/arrangement-pull-integration-service:2.6.0 + ports: + - "9052:8080" + environment: + <<: [ *common-variables, *message-broker-variables, *gc-credentials, *gc-api-config, *gc-http-config, *database-variables, *mambu-creds ] + spring.application.name: "arrangement-pull-integration" + spring.datasource.url: jdbc:mysql://mysql:3306/arrangement-pull-integration-service?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true + eureka.instance.appname: arrangement-pull-integration + logging.level.root: INFO + logging.level.org.springframework.web.client.RestTemplate: INFO + "backbase.communication.http.client-id": "bb-client" + "backbase.communication.http.client-secret": "bb-secret" + "enableExperimentalUniversalSupport": "true" + "SPRING_PROFILES_INCLUDE": "" + "backbase.stream.legalentity.sink.serviceAgreementPurposes": "FAMILY_BANKING" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + + transaction-pull-integration: + image: crreference914.azurecr.io/transaction-pull-integration-service:1.9.0 + ports: + - "9053:8080" + environment: + <<: [ *common-variables, *message-broker-variables, *gc-credentials, *gc-api-config, *gc-http-config, *database-variables, *mambu-creds ] + spring.application.name: "transaction-pull-integration" + spring.datasource.url: jdbc:mysql://mysql:3306/transaction-pull-integration-service?useSSL=false&allowPublicKeyRetrieval=true&cacheServerConfiguration=true&createDatabaseIfNotExist=true + eureka.instance.appname: transaction-pull-integration + logging.level.root: INFO + logging.level.org.springframework.web.client.RestTemplate: INFO + "backbase.communication.http.client-id": "bb-client" + "backbase.communication.http.client-secret": "bb-secret" + "enableExperimentalUniversalSupport": "true" + "SPRING_PROFILES_INCLUDE": "" + "backbase.stream.legalentity.sink.serviceAgreementPurposes": "FAMILY_BANKING" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + healthcheck: + <<: *healthcheck-defaults + test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] + depends_on: + mysql: + condition: service_healthy + links: + - activemq + - registry + wiremock: image: wiremock/wiremock:2.32.0 profiles: @@ -576,7 +869,8 @@ services: condition: service_healthy retail-app: - image: crreference914.azurecr.io/retail-usa:2025.07 + image: crreference914.azurecr.io/retail-usa:2025.07.3 +# image: backbaseregistry.azurecr.io/docker/retail-usa:2025.10-rc.0-20251107T0855Z-10d7a5e environment: AUTH_REALM: "retail" AUTH_URL: http://localhost:8180/auth/ @@ -610,21 +904,24 @@ services: - edge - backbase-identity - # : - # image: /: - # ports: - # - "8090:8080" - # environment: - # <<: *common-variables - # spring.application.name: "" - # eureka.client.enabled: 'true' - # volumes: - # - ./scripts/HealthCheck.jar:/tmp/HealthCheck.jar - # healthcheck: - # <<: *healthcheck-defaults - # test: [ "CMD", "java", "-jar", "-Xms5M", "-Xmx10M", "/tmp/HealthCheck.jar", "http://localhost:8080/actuator/serviceregistry" ] - # links: - # - registry + event-bridge: + image: repo.backbase.com/backbase-docker-releases/event-bridge:${BB_VERSION} + ports: + - "8090:8080" + environment: + <<: [ *common-variables, *message-broker-variables, *gc-credentials, *gc-api-config, *gc-http-config] + backbase.enable-no-auth-localhost-endpoints: false + "BACKBASE_EVENTS_ENABLED": "true" + SERVER_PORT: 8080 + BUILDINGBLOCKS_SECURITY_CSRF_ENABLED: "false" + "backbase.security.csrf.enabled": "false" + "backbase.security.mtls.enabled": "false" + volumes: + - ./exe/HealthCheck.jar:/tmp/HealthCheck.jar + # - ./jwt/keystore_pub.p12:/jwt/public/keystore_pub.p12:ro # Uncomment if needed + links: + - activemq + - registry prometheus: image: prom/prometheus