-
-
Notifications
You must be signed in to change notification settings - Fork 486
/
Copy pathmulti-queue.override.yml
65 lines (61 loc) · 1.83 KB
/
multi-queue.override.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
x-no-healthcheck: &no-healthcheck
healthcheck:
disable: true
services:
uwsgi:
environment:
- CELERY_QUEUES=default,local,long
celery_worker_local:
image: intelowlproject/intelowl:${REACT_APP_INTELOWL_VERSION}
container_name: intelowl_celery_worker_local
restart: unless-stopped
hostname: celery_worker_local
stop_grace_period: 3m
volumes:
- ../configuration:/opt/deploy/intel_owl/configuration
- generic_logs:/var/log/intel_owl
- shared_files:/opt/deploy/files_required
entrypoint:
- ./docker/entrypoints/celery_local.sh
env_file:
- env_file_app
depends_on:
uwsgi:
condition: service_healthy
<<: *no-healthcheck
celery_worker_long:
image: intelowlproject/intelowl:${REACT_APP_INTELOWL_VERSION}
container_name: intelowl_celery_worker_long
hostname: celery_worker_long
restart: unless-stopped
stop_grace_period: 3m
volumes:
- ../configuration:/opt/deploy/intel_owl/configuration
- generic_logs:/var/log/intel_owl
- shared_files:/opt/deploy/files_required
entrypoint:
- ./docker/entrypoints/celery_long.sh
env_file:
- env_file_app
depends_on:
uwsgi:
condition: service_healthy
<<: *no-healthcheck
celery_worker_ingestor:
image: intelowlproject/intelowl:${REACT_APP_INTELOWL_VERSION}
container_name: intelowl_celery_worker_ingestor
hostname: celery_worker_ingestor
restart: unless-stopped
stop_grace_period: 3m
volumes:
- ../configuration:/opt/deploy/intel_owl/configuration
- generic_logs:/var/log/intel_owl
- shared_files:/opt/deploy/files_required
entrypoint:
- ./docker/entrypoints/celery_ingestor.sh
env_file:
- env_file_app
depends_on:
uwsgi:
condition: service_healthy
<<: *no-healthcheck