Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 2.12 KB

File metadata and controls

62 lines (46 loc) · 2.12 KB

Deployment Goal: Local Demo

On how to deploy a productive connector with joining an existing Data Space, please refer to our Productive Deployment Guide.

Quick Start

To quickly start using our sovity EDC CE or MDS EDC CE, we offer a quick start docker-compose.yaml file.

Launch two sovity EDC CE Connectors Launch two MDS EDC CE Connectors
# Run with Bash from the root directory of the project

# Log-In to the Github Container Registry
docker login ghcr.io

# Start sovity EDC Connectors
docker compose up
# Run with Bash from the root directory of the project

# Log-In to the Github Container Registry
docker login ghcr.io

# Start MDS EDC Connectors without activating the logging-house-extension
EDC_UI_ACTIVE_PROFILE=mds-open-source EDC_LOGGINGHOUSE_EXTENSION_ENABLED=false docker compose up

Quick Start: Default Configuration

The default configuration launches two local EDC Connectors with the following credentials:

First Connector Second Connector
Homepage http://localhost:11000 http://localhost:22000
Management Endpoint http://localhost:11002/api/management http://localhost:22002/api/management
Management API Key ApiKeyDefaultValue ApiKeyDefaultValue
Connector Endpoint http://edc:11003/api/dsp
Requires Docker Compose Network
http://edc2:11003/api/dsp
Requires Docker Compose Network

(back to top)