-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-tdk.yaml
More file actions
32 lines (30 loc) · 1.16 KB
/
docker-compose-tdk.yaml
File metadata and controls
32 lines (30 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: '3.5'
services:
tdk:
container_name: tdk
image: synthesizedio/synthesized-tdk-cli:v1.32.10
environment:
SYNTHESIZED_INPUT_URL: jdbc:postgresql://input_db:5432/postgres
SYNTHESIZED_INPUT_USERNAME: postgres
SYNTHESIZED_INPUT_PASSWORD: postgres
SYNTHESIZED_OUTPUT_URL: jdbc:postgresql://output_db:5432/postgres
SYNTHESIZED_OUTPUT_USERNAME: postgres
SYNTHESIZED_OUTPUT_PASSWORD: postgres
SYNTHESIZED_USERCONFIG_FILE: /app/config.yaml
TDK_WORKINGDIRECTORY_PATH: /app/data
TDK_WORKINGDIRECTORY_ENABLED: "true"
JAVA_TOOL_OPTIONS: >
-Dlogging.level.io.synthesized.testingsuite.executor.lite.LiteTransformer=INFO
-Dlogging.level.io.synthesized.testingsuite=WARN
-Dlogging.level.com.zaxxer.hikari=WARN
-Dlogging.level.org.reflections=WARN
-Dlogging.level.org.jooq=WARN
-XX:+UseContainerSupport
-XX:MaxRAMPercentage=80.0
-Dspring.main.banner-mode=CONSOLE
-Dspring.banner.location=file:/app/banner.txt
volumes:
- ./${CONFIG_FILE}:/app/config.yaml
depends_on:
databases:
condition: service_completed_successfully