forked from Arquisoft/wichat_0
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
186 lines (171 loc) · 4.45 KB
/
Copy pathdocker-compose.yml
File metadata and controls
186 lines (171 loc) · 4.45 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
version: "3.9"
services:
mongodb:
container_name: mongodb-wichat_es3a
image: mongo
profiles: ["dev", "prod"]
volumes:
- mongodb_data:/data/db
ports:
- "27017:27017"
networks:
- mynetwork
authservice:
container_name: authservice-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/authservice:latest
build: ./users/authservice
profiles: ["dev", "prod"]
ports:
- "8002:8002"
networks:
- mynetwork
environment:
MONGODB_URI: ${MONGO_URI}
userservice:
container_name: userservice-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/userservice:latest
build: ./users/userservice
profiles: ["dev", "prod"]
ports:
- "8001:8001"
networks:
- mynetwork
environment:
MONGODB_URI: ${MONGO_URI}
historic:
container_name: historic-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/historic:latest
profiles: ["dev", "prod"]
build: ./historicservice
ports:
- "8007:8007"
networks:
- mynetwork
environment:
MONGODB_URI: ${MONGO_URI}
questionservice:
container_name: questionservice-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/questionservice:latest
build: ./questionservice
profiles: ["dev", "prod"]
depends_on:
- mongodb
ports:
- "8004:8004"
networks:
- mynetwork
environment:
MONGODB_URI: ${MONGO_URI}
cardservice:
container_name: cardservice-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/cardservice:latest
profiles: ["dev", "prod"]
build: ./cardservice
ports:
- "8008:8008"
networks:
- mynetwork
llmservice:
container_name: llmservice-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/llmservice:latest
build: ./llmservice
profiles: ["dev", "prod"]
ports:
- "8003:8003"
networks:
- mynetwork
environment:
LLM_API_KEY: ${LLM_API_KEY}
gatewayservice:
container_name: gatewayservice-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/gatewayservice:latest
build: ./gatewayservice
profiles: ["dev", "prod"]
depends_on:
- userservice
- authservice
- llmservice
- questionservice
- historic
- cardservice
ports:
- "8000:8000"
networks:
- mynetwork
environment:
AUTH_SERVICE_URL: http://authservice:8002
USER_SERVICE_URL: http://userservice:8001
LLM_SERVICE_URL: http://llmservice:8003
QUESTION_SERVICE_URL: http://questionservice:8004
HISTORIC_SERVICE_URL: http://historic:8007
CARD_SERVICE_URL: http://cardservice:8008
gateway-api-service:
container_name: gateway-api-service-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/gateway-api-service:latest
build: ./gateway-api-service
profiles: ["dev", "prod"]
depends_on:
- mongodb
- userservice
- questionservice
ports:
- "8006:8006"
networks:
- mynetwork
environment:
USER_SERVICE_URL: http://userservice:8001
QUESTION_SERVICE_URL: http://questionservice:8004
webapp:
container_name: webapp-wichat_es3a
image: ghcr.io/arquisoft/wichat_es3a/webapp:latest
build:
context: ./webapp
args:
REACT_APP_LLM_API_KEY: ${LLM_API_KEY}
REACT_APP_API_ENDPOINT: http://wichatdeluxe.duckdns.org:8000
profiles: ["dev", "prod"]
depends_on:
- gatewayservice
ports:
- "3000:3000"
environment:
REACT_APP_LLM_API_KEY: ${LLM_API_KEY}
REACT_APP_API_ENDPOINT: http://wichatdeluxe.duckdns.org:8000
prometheus:
image: prom/prometheus
container_name: prometheus-wichat_es3a
profiles: ["dev"]
networks:
- mynetwork
volumes:
- ./gatewayservice/monitoring/prometheus:/etc/prometheus
- prometheus_data:/prometheus
ports:
- "9090:9090"
depends_on:
- gatewayservice
grafana:
image: grafana/grafana
container_name: grafana-wichat_es3a
profiles: ["dev"]
networks:
- mynetwork
volumes:
- grafana_data:/var/lib/grafana
- ./gatewayservice/monitoring/grafana/provisioning:/etc/grafana/provisioning
environment:
GF_SERVER_HTTP_PORT: 9091
GF_AUTH_DISABLE_LOGIN_FORM: "true"
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
ports:
- "9091:9091"
depends_on:
- prometheus
volumes:
mongodb_data:
prometheus_data:
grafana_data:
networks:
mynetwork:
driver: bridge