-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (69 loc) · 1.42 KB
/
Copy pathdocker-compose.yml
File metadata and controls
75 lines (69 loc) · 1.42 KB
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
networks:
pi-network:
driver: bridge
services:
rabbitmq:
image: rabbitmq:3-management
ports:
- "5673:5672"
- "15673:15672"
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
networks:
- pi-network
redis:
image: redis:7-alpine
container_name: redis
command: ["redis-server", "/usr/local/etc/redis/redis.conf"]
volumes:
- ./redis.conf:/usr/local/etc/redis/redis.conf
- redis_data:/data
ports:
- "6379:6379"
networks:
- pi-network
app:
build: .
command: gunicorn --bind 0.0.0.0:5000 main:app
ports:
- "5000:5000"
volumes:
- .:/app
depends_on:
- rabbitmq
- redis
environment:
- CELERY_BROKER_URL=pyamqp://guest@rabbitmq//
- CELERY_RESULT_BACKEND=redis://redis:6379/0
networks:
- pi-network
worker:
build: .
command: celery -A main.celery worker --loglevel=info
volumes:
- .:/app
depends_on:
- rabbitmq
- redis
environment:
- CELERY_BROKER_URL=pyamqp://guest@rabbitmq//
- CELERY_RESULT_BACKEND=redis://redis:6379/0
networks:
- pi-network
tester:
build: .
command: python test_api.py
volumes:
- .:/app
depends_on:
- app
- worker
environment:
- BASE_URL=http://app:5000
networks:
- pi-network
profiles:
- test
volumes:
redis_data: