This repository is archived as it has been folded into https://github.com/openzipkin/zipkin-gcp/tree/master/docker
This repository contains the Docker build definition and release process for openzipkin/zipkin-gcp.
This layers Google Cloud Platform support on the base zipkin docker image.
Currently, this adds Stackdriver Trace storage
By default, this image will search for credentials in a json file at $GOOGLE_APPLICATION_CREDENTIALS
If you want to try Zipkin against Stackdriver, the easiest start is to share your credentials with Zipkin's docker image.
$ docker run -d -p 9411:9411 \
-e STORAGE_TYPE=stackdriver \
-e GOOGLE_APPLICATION_CREDENTIALS=/root/.gcp/credentials.json \
-e STACKDRIVER_PROJECT_ID=your_project \
-v $HOME/.gcp:/root/.gcp:ro \
openzipkin/zipkin-gcp
Configuration is via environment variables, defined by zipkin-gcp.
In docker, the following can also be set:
* `JAVA_OPTS`: Use to set java arguments, such as heap size or trust store location.
Stackdriver Configuration variables are detailed here.