-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathdocker-compose.dev.yml
77 lines (63 loc) · 1.3 KB
/
docker-compose.dev.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
# Development overrides that will:
#
# - map container ports to random ports on the host machine
#
version: '2'
services:
# cadvisor:
# ports:
# - "8080"
celerybeat:
extends:
file: common-services.yml
service: cyphon-dev
celeryworker:
extends:
file: common-services.yml
service: cyphon-dev
cyclops:
env_file:
- ./config-COPYME/env/cyclops.env
volumes:
- ./config-COPYME/env/cyclops.env:/usr/src/app/cyclops/cyclops.env
ports:
- "3000"
cyphon:
extends:
file: common-services.yml
service: cyphon-dev
environment:
CYPHON_SUPERUSER: "YES"
LOAD_EXAMPLE_FIXTURES: "YES"
ports:
- "8000"
kibana:
ports:
- "5601"
logstash:
ports:
- "5044"
- "5045"
nginx:
ports:
- "80" # Cyclops
- "443" # Cyclops
- "8000" # Cyphon
# - "8080" # cAdvisor
- "5601" # Kibana
- "15672" # RabbitMQ management plugin
rabbit:
ports:
- "15672" # RabbitMQ management plugin
logchutes:
extends:
file: common-services.yml
service: cyphon-dev
monitors:
extends:
file: common-services.yml
service: cyphon-dev
watchdogs:
extends:
file: common-services.yml
service: cyphon-dev