Files
spring-cloud-sleuth/spring-cloud-sleuth-samples/spring-cloud-sleuth-sample-zipkin/docker-compose.yml
Adrian Cole 51b542e34b Updates to latest zipkin, adding spring.zipkin.compression.enabled flag
This updates to latest zipkin, adding a flag to gzip spans before
posting them. Note this is set to false by default as it requires servers
to also be latest. We can flip the default once we can assume that.

Ex. `spring.zipkin.compression.enabled = true`
2016-02-25 21:11:58 +08:00

28 lines
537 B
YAML

mysql:
image: openzipkin/zipkin-mysql:1.34.0
ports:
- 3306:3306
query:
image: openzipkin/zipkin-java:0.6.0
environment:
# Remove TRANSPORT_TYPE to disable tracing
- TRANSPORT_TYPE=http
- STORAGE_TYPE=mysql
# - JAVA_OPTS=your jvm params here
expose:
- 9411
ports:
- 9411:9411
links:
- mysql:storage
web:
image: openzipkin/zipkin-web:1.34.0
environment:
# Remove TRANSPORT_TYPE to disable tracing
- TRANSPORT_TYPE=http
ports:
- 8080:8080
- 9990:9990
links:
- query