-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
59 lines (43 loc) · 1.06 KB
/
docker-compose.override.yml
File metadata and controls
59 lines (43 loc) · 1.06 KB
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
# Docker compose overrides for running mist.io in dev mode. This mounts local
# code in the running containers, defines some extra containers needed for
# development, etc. This is not a standalone file. It extends
# docker-compose.yml and requires a local recursive clone of the mist.io git
# repository.
version: '2.0'
services:
elasticsearch:
ports:
- 9200:9200
logstash:
volumes:
- ./docker/logstash/config:/config-dir:rw
kibana:
ports:
- 5601:5601
elasticsearch-manage:
volumes:
- ./docker/elasticsearch-manage:/opt/elasticsearch-manage
debugger:
image: mist/debugger
volumes:
- ./keys:/keys
celery: &backend
volumes:
- ./api:/mist.api:rw
- ./keys:/keys
- ./elasticsearch:/elasticsearch
scheduler: *backend
poller: *backend
beat: *backend
hubshell: *backend
api: *backend
sockjs: *backend
ui:
volumes:
- ./ui:/ui:rw
landing:
volumes:
- ./landing:/landing:rw
nginx:
volumes:
- ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf:rw