This repository contains the Docker build definition for zipkin-aws
. This layers Amazon Web
Services support on the base Zipkin Docker image.
By default, this image will search for credentials in the $HOME/.aws
directory.
If you want to try Zipkin against AWS Elasticsearch, the easiest start is to share your credentials with Zipkin's docker image.
# Note: this is mirrored as ghcr.io/openzipkin/zipkin-aws
$ docker run -d -p 9411:9411 --rm --name zipkin-aws \
-e STORAGE_TYPE=elasticsearch \
-e ES_AWS_DOMAIN=YOUR_DOMAIN -e ES_AWS_REGION=YOUR_REGION \
-v $HOME/.aws:/zipkin/.aws:ro \
openzipkin/zipkin-aws
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.
To build a zipkin-aws Docker image from source, in the top level of the repository, run:
$ build-bin/docker/docker_build openzipkin/zipkin-aws:test
To build from a published version, run this instead:
$ build-bin/docker/docker_build openzipkin/zipkin-aws:test 0.18.1