-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (49 loc) · 1.16 KB
/
docker-compose.yml
File metadata and controls
56 lines (49 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '3.8'
services:
postgres-extractor:
build:
context: ./extractors/postgres
environment:
- DB_HOST=postgres-db-host
- DB_USER=postgres-user
- DB_PASSWORD=postgres-password
- DB_NAME=postgres-db
sqlserver-extractor:
build:
context: ./extractors/sqlserver
environment:
- DB_HOST=sqlserver-db-host
- DB_USER=sqlserver-user
- DB_PASSWORD=sqlserver-password
- DB_NAME=sqlserver-db
mysql-extractor:
build:
context: ./extractors/mysql
environment:
- DB_HOST=mysql-db-host
- DB_USER=mysql-user
- DB_PASSWORD=mysql-password
- DB_NAME=mysql-db
oracle-extractor:
build:
context: ./extractors/oracle
environment:
- DB_HOST=oracle-db-host
- DB_USER=oracle-user
- DB_PASSWORD=oracle-password
- DB_NAME=oracle-db
metadata-repository:
build:
context: ./metadata-repository
ports:
- "5000:5000"
controller:
build:
context: ./controller
depends_on:
- metadata-repository
cdc-stream-processor:
build:
context: ./cdc-stream-processor
depends_on:
- metadata-repository