-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
39 lines (32 loc) · 940 Bytes
/
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
version: '3'
services:
zipkin-mux:
image: zipkin-mux-${USER}
depends_on:
- zipkin-uswest1a
- zipkin-uswest1b
ports:
- 9411:9411
zipkin-uswest1a:
image: openzipkin/zipkin:2.10.1
depends_on:
- cassandra-uswest1a
environment:
- STORAGE_TYPE=cassandra3
- CASSANDRA_ENSURE_SCHEMA=false
- CASSANDRA_CONTACT_POINTS=cassandra-uswest1a
cassandra-uswest1a:
image: openzipkin/zipkin-cassandra
zipkin-uswest1b:
image: openzipkin/zipkin:2.10.1
depends_on:
- cassandra-uswest1b
environment:
- STORAGE_TYPE=cassandra3
- CASSANDRA_ENSURE_SCHEMA=false
- CASSANDRA_CONTACT_POINTS=cassandra-uswest1b
cassandra-uswest1b:
image: openzipkin/zipkin-cassandra
generator:
build: itest/
# vim: ts=4 sw=4 et