This repository contains the Docker build definition for 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.
# Note: this is mirrored as ghcr.io/openzipkin/zipkin-gcp
$ docker run -d -p 9411:9411 --name zipkin-gcp \
-e STORAGE_TYPE=stackdriver \
-e GOOGLE_APPLICATION_CREDENTIALS=/zipkin/.gcp/credentials.json \
-e STACKDRIVER_PROJECT_ID=your_project \
-v $HOME/.gcp:/zipkin/.gcp:ro \
openzipkin/zipkin-gcp
Configuration is via environment variables, defined here.
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.
To build a zipkin-gcp Docker image from source, in the top level of the repository, run:
$ build-bin/docker/docker_build openzipkin/zipkin-gcp:test
To build from a published version, run this instead:
$ build-bin/docker/docker_build openzipkin/zipkin-gcp:test 0.18.1