-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
94 lines (85 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
version: "3"
services:
schellar:
image: flaviostutz/schellar
environment:
- CONDUCTOR_API_URL=http://conductor-server:8080/api
- MONGO_ADDRESS=mongo
- MONGO_USERNAME=root
- MONGO_PASSWORD=root
- LOG_LEVEL=info
ports:
- 3000:3000
restart: always
logging:
driver: "json-file"
options:
max-size: "20MB"
max-file: "5"
networks:
- githunter-net
conductor-server:
build: ./conductor/server
image: conductor-server
environment:
- DYNOMITE_HOSTS=dynomite:8102:us-east-1c
- ELASTICSEARCH_URL=http://elasticblast:8200/
- LOADSAMPLE=false
- PROVISIONING_UPDATE_EXISTING_TASKS=false
ports:
- 8080:8080
restart: always
networks:
- githunter-net
conductor-ui:
image: flaviostutz/conductor-ui
environment:
- WF_SERVER=http://conductor-server:8080/api/
ports:
- 5000:5000
networks:
- githunter-net
dynomite:
image: flaviostutz/dynomite:0.7.5
ports:
- 8102:8102
networks:
- githunter-net
elasticblast:
image: flaviostutz/elasticblast
restart: always
ports:
- 8200:8200
environment:
- LOG_LEVEL=info
- BLAST_URL=http://blast:6000
networks:
- githunter-net
blast:
image: flaviostutz/blast-indexer
ports:
- 6000:6000
networks:
- githunter-net
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
volumes:
- ./data/mongo/volume:/data/db
ports:
- 27017:27017
networks:
- githunter-net
scraper:
build: .
image: githunter-scraper:1.0
restart: always
ports:
- 3002:3002
networks:
- githunter-net
networks:
githunter-net: