forked from openzipkin-attic/docker-zipkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-legacy.yml
30 lines (28 loc) · 1.01 KB
/
docker-compose-legacy.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
# This file uses the version 1 docker-compose file format, described here:
# https://docs.docker.com/compose/compose-file/#version-1
#
# It runs the zipkin-cassandra, zipkin-query, and zipkin-web containers, as well
# as the legacy zipkin-collector container, and uses docker container linking to
# wire the containers together.
storage:
image: openzipkin/zipkin-cassandra:1.14.3
ports:
- 9042:9042
# The zipkin process services the UI, and also exposes a POST endpoint that
# instrumentation can send trace data to. Scribe is enabled by default.
# It can also poll kafka, when the KAFKA_ZOOKEEPER variable is set.
zipkin:
image: openzipkin/zipkin:1.14.3
environment:
- STORAGE_TYPE=cassandra
# Uncomment to enable self-tracing
# - SELF_TRACING_ENABLED=true
ports:
# Listen port for the Scribe transport
- 9410:9410
# Historical port used for the Zipkin HTTP Api
- 9411:9411
# Zipkin UI used to be on a separate process listening on port 8080
- 8080:9411
links:
- storage