Files
spring-cloud-sleuth/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-zipkin/docker-compose.yml
Adrian Cole d662a4bf90 Updates to zipkin 0.9
Notably, this removes the "zipkin-web" dependency, as the UI is now
collocated on zipkin-server.

Other notable changes are Cassandra and Kafka support, as well removing
the Brave dependency.
2016-03-18 17:46:45 +08:00

16 lines
350 B
YAML

mysql:
image: openzipkin/zipkin-mysql:1.38.0
ports:
- 3306:3306
query:
image: openzipkin/zipkin-java:0.9.1
environment:
- STORAGE_TYPE=mysql
ports:
# 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:
- mysql:storage