-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.java.yml
More file actions
71 lines (70 loc) · 1.47 KB
/
docker-compose.java.yml
File metadata and controls
71 lines (70 loc) · 1.47 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
63
64
65
66
67
68
69
70
71
version: '3'
services:
mysql:
build:
context: ./MySQL/build
environment:
MYSQL_ROOT_PASSWORD: "0der1@b)Opd0Sis0nobxuS[uhId"
MYSQL_DATABASE: "DITAS"
ports:
- 6603:3306
cassandra:
build:
context: ./Cassandra/build
links:
- zipkin:zipkin
ports:
- 7000:7000
- 7001:7001
- 9042:9042
- 9160:9160
elasticsearch:
image: elasticsearch
ports:
- 9200:9200
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
command: "-Elogger.level=ERROR"
vdc:
build:
context: ./vdc-dummy/
links:
- cassandra:cassandra
- mysql:mysql
- zipkin:zipkin
- elasticsearch:elasticsearch
depends_on:
- cassandra
- mysql
ports:
- 8484:8484
- 8080:8080
environment:
- "elasticURI=elasticsearch:9200"
request-monitor:
build:
context: ./request-monitor/
ports:
- 8000:8000
links:
- vdc:vdc
- elasticsearch:elasticsearch
- zipkin:zipkin
depends_on:
- vdc
- elasticsearch
- zipkin
environment:
- "VDC_NAME=osrvdc"
- "OPENTRACING=on"
zipkin:
image: openzipkin/zipkin
ports:
- 9411:9411
environment:
- JAVA_OPTS=-Dlogging.level.zipkin=DEBUG -Dlogging.level.zipkin2=DEBUG
- "COLLECTOR_SAMPLE_RATE=1.0"
- "STORAGE_TYPE=elasticsearch"
- "ES_HOSTS=http://elasticsearch:9200"
links:
- elasticsearch:elasticsearch