-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (62 loc) · 1.2 KB
/
docker-compose.yml
File metadata and controls
62 lines (62 loc) · 1.2 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
60
61
62
elasticsearch:
image: dockerfile/elasticsearch
expose:
- "9200"
volumes:
- deploy/data/elasticsearch:/data/data
- deploy/logs/elasticsearch:/data/log
mongodb:
image: dockerfile/mongodb
expose:
- "27017"
volumes:
- deploy/data/mongodb:/data/db
parser:
image: submanio/subman-parser
links:
- elasticsearch
- mongodb
environment:
DB_HOST: "http://elasticsearch:9200"
INDEX_NAME: "subman7"
IS_DEBUG: "false"
RAW_DB_HOST: "mongodb"
RAW_DB_PORT: "27017"
RAW_DB_NAME: "subman7"
web:
image: submanio/subman-web
links:
- elasticsearch
expose:
- "3000"
environment:
DB_HOST: "http://elasticsearch:9200"
INDEX_NAME: "subman7"
IS_DEBUG: "false"
prerender:
image: submanio/prerender
links:
- web
nginx:
image: submanio/nginx
domainname: subman.io
links:
- web
- prerender
volumes:
- deploy/logs/nginx:/var/log/nginx
volumes_from:
- web
ports:
- "80:80"
maintain:
image: submanio/subman-maintain
links:
- elasticsearch
- mongodb
environment:
DB_HOST: "http://elasticsearch:9200"
INDEX_NAME: "subman7"
RAW_DB_HOST: "mongodb"
RAW_DB_PORT: "27017"
RAW_DB_NAME: "subman7"