-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
64 lines (63 loc) · 1.15 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
version: '2'
services:
db:
image: postgres
rabbitmq:
image: rabbitmq
elasticsearch:
image: elasticsearch:2
web:
image: ccnmtl/plexus
environment:
- APP=plexus
- SECRET_KEY=dummy-secret-key
- SETTINGS=settings_compose
command: manage runserver 0.0.0.0:8000
volumes:
- .:/app/
ports:
- "8000:8000"
links:
- db
- elasticsearch
- rabbitmq
depends_on:
- db
- elasticsearch
- rabbitmq
celery:
image: ccnmtl/plexus
command: worker
environment:
- APP=plexus
- SECRET_KEY=dummy-secret-key
- SETTINGS=settings_compose
- C_FORCE_ROOT=true
volumes:
- .:/app/
links:
- db
- elasticsearch
- rabbitmq
depends_on:
- db
- elasticsearch
- rabbitmq
beat:
image: ccnmtl/plexus
command: beat
environment:
- APP=plexus
- SECRET_KEY=dummy-secret-key
- SETTINGS=settings_compose
- C_FORCE_ROOT=true
volumes:
- .:/app/
links:
- db
- elasticsearch
- rabbitmq
depends_on:
- db
- elasticsearch
- rabbitmq