-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
223 lines (212 loc) · 5.7 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
services:
certs:
image: alpine:latest
volumes:
- .:/app
entrypoint: "sh /app/ssl/generate-certs.sh"
# Go migrator. It applies all needed migrations.
migrator:
image: rasulovarsen/migrator:latest
environment:
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASS}
- DB_NAME=${DB_NAME}
volumes:
- .env:/app/.env
depends_on:
- postgres
networks:
- app-network
# Go backend
backend:
image: rasulovarsen/backend:latest
ports:
- "8008:8008"
environment:
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASS}
- DB_NAME=${DB_NAME}
- MINIO_HOST=minio
- MINIO_PORT=${MINIO_PORT}
- MINIO_ACCESS_KEY=${MINIO_ACCESS_KEY}
- MINIO_SECRET_KEY=${MINIO_SECRET_KEY}
- REDIS_HOST=redis
- REDIS_PORT=6379
volumes:
- .env:/app/.env
depends_on:
- postgres
- minio
- certs
- redis
- ads_service
- auth_service
- city_service
- migrator
networks:
- app-network
# PostgreSQL database
postgres:
image: postgres:17
ports:
- "8077:5432"
environment:
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASS}
POSTGRES_DB: ${DB_NAME}
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- app-network
# Redis for caching
redis:
image: redis:7
ports:
- "6379:6379"
networks:
- app-network
prometheus:
image: prom/prometheus:latest
container_name: prometheus
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
restart: always
networks:
- app-network
grafana:
image: grafana/grafana:latest
container_name: grafana
ports:
- "8060:3000"
restart: always
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=admin
volumes:
- grafana-data:/var/lib/grafana
networks:
- app-network
node_exporter:
image: prom/node-exporter:latest
container_name: node_exporter
ports:
- "9100:9100"
restart: always
networks:
- app-network
# MinIO for object storage
minio:
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
command: server /data --console-address ":9001"
volumes:
- minio_data:/data
networks:
- app-network
# MinIO Client for bucket creation
minio-client:
image: minio/mc
depends_on:
- minio
entrypoint: >
/bin/sh -c "
sleep 5;
/usr/bin/mc alias set myminio http://minio:9000 ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD};
/usr/bin/mc mb --ignore-existing myminio/images;
/usr/bin/mc anonymous set download myminio/images;
/usr/bin/mc anonymous set download myminio/cities;
"
networks:
- app-network
# Ads service
ads_service:
image: rasulovarsen/ads_service:latest
ports:
- "50052:50052"
volumes:
- .env:/.env
depends_on:
- redis
- postgres
- minio
- minio-client
environment:
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASS}
- DB_NAME=${DB_NAME}
- REDIS_HOST=redis
- REDIS_PORT=6379
networks:
- app-network
# Auth service
auth_service:
image: rasulovarsen/auth_service:latest
ports:
- "50051:50051"
volumes:
- .env:/.env
depends_on:
- redis
- postgres
environment:
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASS}
- DB_NAME=${DB_NAME}
- REDIS_HOST=redis
- REDIS_PORT=6379
networks:
- app-network
# City service
city_service:
image: rasulovarsen/city_service:latest
ports:
- "50053:50053"
volumes:
- .env:/.env
depends_on:
- redis
- postgres
- minio
- minio-client
environment:
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASS}
- DB_NAME=${DB_NAME}
- REDIS_HOST=redis
- REDIS_PORT=6379
networks:
- app-network
watchtower:
image: containrrr/watchtower:latest
container_name: watchtower
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_ROLLING_RESTART=true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
command: --interval 30
volumes:
postgres_data:
minio_data:
grafana-data:
networks:
app-network:
driver: bridge