Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subprojects {
extra["springCloudVersion"] = "2025.0.1"
extra["jMoleculesVersion"] = "2023.1.0"
extra["testcontainers.version"] = "1.21.4"
extra["cfLobPlatformVersion"] = "1.4.0-PR536-249d6db-GHRUN22186402675"
extra["cfLobPlatformVersion"] = "1.4.0-PR570-4c2a1f6-GHRUN22202908664"

dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
Expand Down
14 changes: 12 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
LOB_ACCOUNTING_REPORTING_CORE_ENABLED: false
LOB_REPORTING_ENABLED: false
LOB_INDEXER_ENABLED: ${LOB_INDEXER_ENABLE:-true}
LOB_INDEXER_URL: ${LOB_INDEXER_URL:-https://indexer.dev.reeve.cf-deployments.org}
LOB_INDEXER_URL: ${LOB_INDEXER_URL:-http://reeve-verifier-backend:9000}
LOB_ORGANISATION_ENABLED: false
LOB_BLOCKCHAIN_READER_ENABLED: true
LOB_BLOCKCHAIN_PUBLISHER_ENABLED: true
Expand Down Expand Up @@ -128,7 +128,7 @@ services:
LOB_ORGANISATION_ENABLED: true
LOB_REPORTING_ENABLED: true
LOB_INDEXER_ENABLED: ${LOB_INDEXER_ENABLE:-true}
LOB_INDEXER_URL: ${LOB_INDEXER_URL:-https://indexer.dev.reeve.cf-deployments.org}
LOB_INDEXER_URL: ${LOB_INDEXER_URL:-http://reeve-verifier-backend:9000}
LOB_BLOCKCHAIN_PUBLISHER_ROLLBACK_ENABLED: false
LOB_BLOCKCHAIN_READER_ENABLED: false
LOB_BLOCKCHAIN_PUBLISHER_ENABLED: false
Expand Down Expand Up @@ -269,6 +269,16 @@ services:
KAFKA_MESSAGE_MAX_BYTES: 15728640 # 15MB
KAFKA_REPLICA_FETCH_MAX_BYTES: 15728640 # 15MB

kafdrop:
image: obsidiandynamics/kafdrop
restart: "no"
ports:
- "19000:9000"
networks:
- lob
environment:
KAFKA_BROKERCONNECT: "1@kafka:9092"

follower-app:
restart: unless-stopped
image: pro.registry.gitlab.metadata.dev.cf-deployments.org/base-infrastructure/docker-registry/cf-reeve-follower-app:release-1.1.0
Expand Down
Loading