From 58daeeb430d129beb34cef3295d9aa332421edc4 Mon Sep 17 00:00:00 2001 From: Nitin <45592624+nitin-vavdiya@users.noreply.github.com> Date: Fri, 29 Nov 2024 14:26:27 +0530 Subject: [PATCH] Update docker-compose.yaml Comments added in docker compose file --- docker-compose.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 3124d14..2f0387f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -253,6 +253,9 @@ services: retries: 3 start_period: 30s +# Service to register a business partner in the backend application to avoid manual data creation. +# This will register smartSense's EDC into the Catena-X backend and vice versa. +# This could be automated using a central service, i.e., the EDC Discovery Service. bp-registration: image: alpine/curl container_name: bp-registration @@ -295,6 +298,9 @@ services: networks: - edc-network +# This script creates missing tables in the EDC database. +# Ideally, migrations should handle this, but due to an issue in EDC 0.7.7, some tables were not created. +# To save time, we added this script as a precaution; it will only create tables if they don't exist. smartsense-edc-migration: image: flyway/flyway:latest container_name: smartsense-edc-migration