Configuring and Running DBSync Cloud CDM On Docker
Prerequisites
Configuration
version: '3'
services:
dbsync-cdm-local:
container_name: dbsync-cloud-cdm
image: dbsync/cloud-cdm:latest
ports:
- "8080:8080"
environment:
- system_dir=/opt/data/db/conf
- profile_db_path=/opt/data/db
- storage_path=/opt/data/profiles
volumes:
- docker-volume:/opt/data
volumes:
docker-volume:
external: true # Set to false to create a new volume automaticallyExplanation of Configuration
Running the Application
Accessing application User Interface
Last updated