-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-simple.yml
52 lines (45 loc) · 1005 Bytes
/
docker-compose-simple.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
version: '3.5'
services:
conductor-server:
image: flaviostutz/conductor-server:2.12.1.6
restart: always
ports:
- 8080:8080
environment:
- DYNOMITE_HOSTS=dynomite:8102:us-east-1c
- ELASTICSEARCH_URL=http://elasticblast:8200/
- LOADSAMPLE=true
- PROVISIONING_UPDATE_EXISTING_TASKS=false
conductor-ui:
image: flaviostutz/conductor-ui
restart: always
environment:
- WF_SERVER=http://conductor-server:8080/api/
ports:
- 5000:5000
elasticblast:
image: flaviostutz/elasticblast
restart: always
ports:
- 8200:8200
environment:
- LOG_LEVEL=info
- BLAST_URL=http://blast:6000
blast:
image: flaviostutz/blast-indexer
ports:
- 6000:6000
volumes:
- blast:/data
dynomite:
image: flaviostutz/dynomite:0.7.5
restart: always
ports:
- 8102:8102
volumes:
- dynomite:/var/lib/redis
volumes:
blast:
driver: local
dynomite:
driver: local