forked from Arquisoft/wichat_0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
165 lines (153 loc) · 3.88 KB
/
docker-compose.yml
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
services:
mongodb:
container_name: mongodb-wichat_en2a
image: mongo
profiles: ["dev", "prod"]
volumes:
- mongodb_data:/data/db
ports:
- "27017:27017"
networks:
- mynetwork
authservice:
container_name: authservice-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/authservice:latest
profiles: ["dev", "prod"]
build: ./users/authservice
depends_on:
- mongodb
ports:
- "8002:8002"
networks:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/userdb
userservice:
container_name: userservice-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/userservice:latest
profiles: ["dev", "prod"]
build: ./users/userservice
depends_on:
- mongodb
ports:
- "8001:8001"
networks:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/userdb
gameservice:
container_name: gameservice-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/gameservice:latest
profiles: ["dev", "prod"]
build: ./users/gameservice
depends_on:
- mongodb
ports:
- "8005:8005"
networks:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/gamedb
llmservice:
container_name: llmservice-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/llmservice:latest
profiles: ["dev", "prod"]
build:
context: ./llmservice
args:
GEMINI_KEY: ${GEMINI_KEY}
EMPATHY_KEY: ${EMPATHY_KEY}
ports:
- "8003:8003"
networks:
- mynetwork
environment:
GEMINI_KEY: ${GEMINI_KEY}
EMPATHY_KEY: ${EMPATHY_KEY}
gatewayservice:
container_name: gatewayservice-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/gatewayservice:latest
profiles: ["dev", "prod"]
build: ./gatewayservice
depends_on:
- mongodb
- userservice
- authservice
- llmservice
- questionservice
- gameservice
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
GAME_SERVICE_URL: http://gameservice:8005
questionservice:
container_name: questionservice-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/questionservice:latest
profiles: ["dev", "prod"]
build: ./questionservice
depends_on:
- mongodb
- llmservice
ports:
- "8004:8004"
networks:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/mongo-db-wichat_en2a
GATEWAY_SERVICE_URL: http://gatewayservice:8000
webapp:
container_name: webapp-wichat_en2a
image: ghcr.io/arquisoft/wichat_en2a/webapp:latest
profiles: ["dev", "prod"]
build:
context: ./webapp
args:
LLM_API_KEY: ${LLM_API_KEY}
depends_on:
- gatewayservice
ports:
- "3000:3000"
prometheus:
image: prom/prometheus
container_name: prometheus-wichat_en2a
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_en2a
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