forked from Arquisoft/wichat_0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
145 lines (133 loc) · 3.35 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
services:
mongodb:
container_name: mongodb-wichat_en3b
image: mongo
profiles: ["dev", "prod"]
volumes:
- mongodb_data:/data/db
ports:
- "27017:27017"
networks:
- mynetwork
authservice:
container_name: authservice-wichat_en3b
image: ghcr.io/arquisoft/wichat_en3b/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_en3b
image: ghcr.io/arquisoft/wichat_en3b/userservice:latest
profiles: ["dev", "prod"]
build: ./users/userservice
depends_on:
- mongodb
ports:
- "8001:8001"
networks:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/userdb
questionservice:
container_name: questionservice-wichat_en3b
image: ghcr.io/arquisoft/wichat_en3b/questionservice:latest
profiles: ["dev", "prod"]
build: ./questionservice
depends_on:
- mongodb
ports:
- "8004:8004"
networks:
- mynetwork
environment:
MONGODB_URI: mongodb://mongodb:27017/mongo-db-wichat_en3b
llmservice:
container_name: llmservice-wichat_en3b
image: ghcr.io/arquisoft/wichat_en3b/llmservice:latest
profiles: ["dev", "prod"]
build:
context: ./llmservice
args:
LLM_API_KEY: ${LLM_API_KEY}
ports:
- "8003:8003"
networks:
- mynetwork
gatewayservice:
container_name: gatewayservice-wichat_en3b
image: ghcr.io/arquisoft/wichat_en3b/gatewayservice:latest
profiles: ["dev", "prod"]
build: ./gatewayservice
depends_on:
- mongodb
- userservice
- authservice
- llmservice
- questionservice
ports:
- "8000:8000"
networks:
- mynetwork
environment:
FRONTEND_URL: ${FRONTEND_URL}
AUTH_SERVICE_URL: http://authservice:8002
USER_SERVICE_URL: http://userservice:8001
LLM_SERVICE_URL: http://llmservice:8003
QUESTION_SERVICE_URL: http://questionservice:8004
webapp:
container_name: webapp-wichat_en3b
image: ghcr.io/arquisoft/wichat_en3b/webapp:latest
profiles: ["dev", "prod"]
build:
context: ./webapp
args:
REACT_APP_API_ENDPOINT: ${REACT_APP_API_ENDPOINT}
depends_on:
- gatewayservice
ports:
- "3000:3000"
prometheus:
image: prom/prometheus
container_name: prometheus-wichat_en3b
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_en3b
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