-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.apps.yml
32 lines (32 loc) · 996 Bytes
/
docker-compose.apps.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
version: '3'
services:
# Applications
console-consumer:
image: jeqo/tracing-console-consumer:1.0.0-SNAPSHOT
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
ZIPKIN_ENDPOINT: http://zipkin:9411/api/v2/spans
stream-processor-joiner:
image: jeqo/tracing-stream-processor-joiner:1.0.0-SNAPSHOT
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
STATE_DIR: /kafka-stream
ZIPKIN_ENDPOINT: http://zipkin:9411/api/v2/spans
volumes:
- kafka-streams:/kafka-streams
http-event-producer:
image: jeqo/tracing-http-event-producer:1.0.0-SNAPSHOT
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
ZIPKIN_ENDPOINT: http://zipkin:9411/api/v2/spans
ports:
- 8080:8080
http-metadata-producer:
image: jeqo/tracing-http-metadata-producer:1.0.0-SNAPSHOT
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
ZIPKIN_ENDPOINT: http://zipkin:9411/api/v2/spans
ports:
- 8081:8081
volumes:
kafka-streams: