Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: documents how to use master version in examples #3656

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker/examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ configuration requires docker-compose 1.6.0+ and docker-engine 1.10.0+.
To start the default docker-compose configuration, run:

```bash
# To use the last released version of zipkin
$ docker-compose up
# To use the last built version of zipkin
$ TAG=master docker-compose up
```

View the web UI at $(docker ip):9411. Traces are stored in memory.
Expand Down Expand Up @@ -115,7 +118,7 @@ $ docker-compose -f docker-compose-rabbitmq.yml up
Then configure the [RabbitMQ sender](https://github.com/openzipkin/zipkin-reporter-java/blob/master/amqp-client/src/main/java/zipkin2/reporter/amqp/RabbitMQSender.java)
using a `host` value of `localhost` or a non-local hostname if in docker.

# Example
## Example

The docker-compose configuration can be extended to host an [example application](https://github.com/openzipkin/brave-example)
using the `docker-compose-example.yml` file. That file employs [docker-compose overrides](https://docs.docker.com/compose/extends/#multiple-compose-files)
Expand Down