forked from Arquisoft/wichat_0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
167 lines (156 loc) · 3.91 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
166
167
services:
mongodb:
container_name: mongodb-wichat_en1c
image: mongo
profiles: ["dev", "prod"]
volumes:
- mongodb_data:/data/db
ports:
- "27017:27017"
networks:
- mynetwork
authservice:
container_name: authservice-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/authservice:latest
profiles: ["dev", "prod"]
build: ./authservice
depends_on:
- mongodb
ports:
- "8002:8002"
networks:
- mynetwork
environment:
NODE_ENV: production
CRYPT_SECRET: ${CRYPT_SECRET}
JWT_SECRET: ${JWT_SECRET}
PORT: 8002
MONGODB_URI: mongodb://mongodb:27017/userdb
statservice:
container_name: statservice-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/statservice:latest
profiles: ["dev", "prod"]
build: ./statservice
depends_on:
- mongodb
ports:
- "8003:8003"
networks:
- mynetwork
environment:
NODE_ENV: production
PORT: 8003
MONGODB_URI: mongodb://mongodb:27017/userdb
llmservice:
container_name: llmservice-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/llmservice:latest
profiles: ["dev", "prod"]
build:
context: ./llmservice
ports:
- "8005:8005"
networks:
- mynetwork
environment:
NODE_ENV: production
LLM_API_KEY: ${LLM_API_KEY}
gatewayservice:
container_name: gatewayservice-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/gatewayservice:latest
profiles: ["dev", "prod"]
build: ./gatewayservice
depends_on:
- authservice
- gameservice
- questionservice
- statservice
ports:
- "8000:8000"
networks:
- mynetwork
environment:
NODE_ENV: production
PORT: 8000
GAME_SERVICE_URL: http://gameservice:8001
AUTH_SERVICE_URL: http://authservice:8002
STATS_SERVICE_URL: http://statservice:8003
QUESTIONS_SERVICE_URL: http://questionservice:8004
webapp:
container_name: webapp-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/webapp:latest
profiles: ["dev", "prod"]
build: ./webapp
depends_on:
- gatewayservice
ports:
- "3000:3000"
gameservice:
container_name: gameservice-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/gameservice:latest
build: ./gameservice
profiles: ["dev", "prod"]
ports:
- "8001:8001"
networks:
- mynetwork
depends_on:
- questionservice
- statservice
- llmservice
environment:
NODE_ENV: production
PORT: 8001
QUESTIONS_SERVICE_URL: http://questionservice:8004
STATS_SERVICE_URL: http://statservice:8003
LLM_SERVICE_URL: http://llmservice:8005
questionservice:
container_name: questionservice-wichat_en1c
image: ghcr.io/arquisoft/wichat_en1c/questionservice:latest
build: ./questionservice
profiles: ["dev", "prod"]
ports:
- "8004:8004"
networks:
- mynetwork
depends_on:
- llmservice
environment:
NODE_ENV: production
prometheus:
image: prom/prometheus
container_name: prometheus-wichat_en1c
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_en1c
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