forked from nirdizati-research/predict-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
107 lines (102 loc) · 3.18 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
version: "3.4"
services:
redis:
image: redis:alpine
db:
image: postgres
restart: unless-stopped
environment:
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_DB=${DB_NAME}
volumes:
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/db/
target: /var/lib/postgresql/data
server:
image: nirdizatiresearch/predict-python
command: python3 manage.py runserver 0.0.0.0:8000
restart: unless-stopped
tty: true
stop_signal: SIGINT
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- DB_NAME=${DB_NAME}
- DB_HOST=db
- DB_PORT=5432
ports:
- 80:8000
depends_on:
- db
volumes:
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/loaded_log_cache/
target: /predict-python/cache/loaded_log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/labeled_log_cache/
target: /predict-python/cache/labeled_log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/log_cache/
target: /predict-python/cache/log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/model_cache/
target: /predict-python/cache/model_cache/
scheduler:
image: nirdizatiresearch/predict-python
build:
context: .
command: python3 manage.py rqscheduler
restart: unless-stopped
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- DB_NAME=${DB_NAME}
- DB_HOST=db
- DB_PORT=5432
depends_on:
- db
volumes:
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/loaded_log_cache/
target: /predict-python/cache/loaded_log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/labeled_log_cache/
target: /predict-python/cache/labeled_log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/log_cache/
target: /predict-python/cache/log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/model_cache/
target: /predict-python/cache/model_cache/
worker:
image: nirdizatiresearch/predict-python
command: python3 manage.py rqworker default
restart: unless-stopped
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- DB_NAME=${DB_NAME}
- DB_HOST=db
- DB_PORT=5432
depends_on:
- db
volumes:
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/loaded_log_cache/
target: /predict-python/cache/loaded_log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/labeled_log_cache/
target: /predict-python/cache/labeled_log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/log_cache/
target: /predict-python/cache/log_cache/
- type: bind
source: /home/ubuntu/Willo/nirdizati-research/model_cache/
target: /predict-python/cache/model_cache/