-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
76 lines (71 loc) · 1.59 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
services:
backend:
build:
context: .
dockerfile: Dockerfile.backend
ports:
- "8080:8080"
env_file:
- .env
environment:
DB_NAME: teo
MONGODB_URI: mongodb://mongodb:27017
REDIS_URL: redis://redis:6379
QUEUE_NAME: telegram_messages
RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672/
NGROK_ACTIVE: false
depends_on:
mongodb:
condition: service_healthy
redis:
condition: service_healthy
rabbitmq:
condition: service_healthy
consumer:
build:
context: .
dockerfile: Dockerfile.consumer
env_file:
- .env
environment:
TEO_BASE_URL: http://backend:8080
QUEUE_NAME: telegram_messages
RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672/
depends_on:
rabbitmq:
condition: service_healthy
mongodb:
image: mongo:latest
ports:
- "27018:27017"
volumes:
- mongodb_data:/data/db
healthcheck:
test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')"]
interval: 30s
timeout: 10s
retries: 5
start_period: 10s
redis:
image: redis:latest
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 30s
timeout: 10s
retries: 5
start_period: 10s
rabbitmq:
image: rabbitmq:4.0.2-management-alpine
ports:
- "5672:5672"
- "15672:15672"
healthcheck:
test: ["CMD-SHELL", "rabbitmqctl status || exit 1"]
interval: 30s
timeout: 10s
retries: 5
start_period: 10s
volumes:
mongodb_data: