-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-onehub.yaml
165 lines (137 loc) · 3.29 KB
/
docker-compose-onehub.yaml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
version: '3'
services:
onehub-ui:
build:
context: "onehub/tn.onehub.main"
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_STAGING_API_URL=hermes-service
hermes-service:
build:
context: "onehub/hermes-service"
product-service:
build:
context: "onehub/product-service"
product-migration:
build:
context: "onehub/product-migration"
party-management-migration-service:
build:
context: "onehub/party-management-migration-service"
subscription-migration:
build:
context: "onehub/subscription-migration"
ticket-migration:
build:
context: "onehub/ticket-migration"
customer-management-service:
build:
context: "onehub/customer-management-service"
party-management-service:
build:
context: "onehub/party-management-service"
subscription-service:
build:
context: "onehub/subscription-service"
ticket-service:
build:
context: "onehub/ticket-service"
netone-ticket-consumer:
build:
context: "onehub/netone-ticket-consumer"
pool-service:
build:
context: "onehub/pool-service"
helpdesk-central-logger-service:
build:
context: "onehub/helpdesk-central-logger-service"
organization-service:
build:
context: "onehub/helpdesk-organization-service"
channel-service:
build:
context: "onehub/channel-service"
state-activity-service:
build:
context: "onehub/state-activity-service"
helpdesk-authentication-service:
build:
context: "onehub/helpdesk-authentication-service"
onehub-meta-service:
build:
context: "onehub/onehub-meta-service"
zookeeper:
image: quay.io/debezium/zookeeper:2.1
ports:
- 2181:2181
- 2888:2888
- 3888:3888
kafka:
image: quay.io/debezium/kafka:2.1
ports:
- 9092:9092
links:
- zookeeper
environment:
- ZOOKEEPER_CONNECT=zookeeper:2181
rabbitmq:
image: rabbitmq:3.8.14-management
ports:
- "5672:5672"
- "15672:15672"
- "15692:15692"
sqlserver:
image: mcr.microsoft.com/azure-sql-edge
hostname: 'sqlserver'
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: transformers!123
MSSQL_PID: Developer
MSSQL_AGENT_ENABLED: true
ports:
- '1434:1433'
sqlserver-tools:
build:
context: debezium-sqlserver-init/mssql
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: transformers!123
MSSQL_PID: Developer
depends_on:
- sqlserver
connect:
image: quay.io/debezium/connect:2.1
ports:
- 8083:8083
links:
- kafka
- sqlserver
environment:
- BOOTSTRAP_SERVERS=kafka:9092
- GROUP_ID=1
- CONFIG_STORAGE_TOPIC=my_connect_configs
- OFFSET_STORAGE_TOPIC=my_connect_offsets
- STATUS_STORAGE_TOPIC=my_connect_statuses
kowl:
image: redpandadata/console:latest
container_name: kowl
environment:
- KAFKA_BROKERS=kafka:9092
ports:
- 8081:8080
depends_on:
- "kafka"
mongo:
image: "mongo"
ports:
- '27017-27019:27017-27019'
postgres_db:
image: 'postgres:13.1-alpine'
container_name: PostgresCont
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- '5432:5432'