-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
73 lines (61 loc) · 1.45 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
version: '3.3'
services:
nats:
ports:
- "4222:4222"
- "8222:8222"
- "6222:6222"
postgres:
ports:
- "5432:5432"
volumes:
- ../.backup:/.backup
- ./postgres/restoredb.sh:/restoredb.sh:ro
- ./postgres/dumpdb.sh:/dumpdb.sh:ro
elasticsearch:
ports:
- "9200:9200"
- "9300:9300"
volumes:
- ./elasticsearch/create_index.sh:/create_index.sh:ro
- ./elasticsearch/delete_index.sh:/delete_index.sh:ro
- ./elasticsearch/status.sh:/status.sh:ro
kibana:
ports:
- "5601:5601"
nginx:
ports:
- "80:80"
volumes:
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./nginx/nginx.vh.default.conf:/etc/nginx/conf.d/default.conf:ro
- ../vtalks.net/static:/static
web:
build: ../vtalks.net
ports:
- "8000:8000"
volumes:
- ../.dataset:/.dataset
- ../vtalks.net:/opt/vtalks.net/
updater-worker:
build: ../updater_worker
volumes:
- ../updater_worker:/opt/updater_worker
twitter-worker:
build: ../twitter_worker
volumes:
- ../twitter_worker:/opt/twitter_worker
facebook-worker:
build: ../facebook_worker
volumes:
- ../facebook_worker:/opt/facebook_worker
linkedin-worker:
build: ../linkedin_worker
volumes:
- ../linkedin_worker:/opt/linkedin_worker
pipeline:
build: ../pipeline
ports:
- "8082:8082"
volumes:
- pipeline-data:/opt/pipeline/data