-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
68 lines (68 loc) · 1.36 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
version: '3.7'
services:
redis:
image: redis
ports:
- "6379:6379"
command: [
"--bind",
"0.0.0.0",
]
worker:
build:
context: .
dockerfile: Dockerfile
command: [
"celery",
"--app=tasks",
"worker",
"--autoscale=8,1",
"--loglevel=INFO",
"-Ofair",
"-Qmain-queue",
"-c1",
]
volumes:
- ./:/app/
- ./input:/app/input
- ./output:/app/output
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
- PYTHONPATH=.
- PYTHONUNBUFFERED=1
- PYTHONDONTWRITEBYTECODE=1
depends_on:
- "redis"
flower:
image: mher/flower
command: [
"celery",
"--broker=redis://redis:6379/0",
"flower",
"--port=5555",
]
ports:
- "5555:5555"
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
depends_on:
- "redis"
app:
build:
context: .
dockerfile: Dockerfile
command: python main.py
tty: true
volumes:
- ./:/app/:cached
- ./.docker/.ipython:/root/.ipython:cached
- ./input:/app/input
- ./output:/app/output
environment:
- PYTHONPATH=.
- PYTHONUNBUFFERED=1
- PYTHONDONTWRITEBYTECODE=1
depends_on:
- "flower"