-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pop compose changes, polish the code and modify docker image
- Loading branch information
1 parent
7785798
commit 5f70994
Showing
5 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# | ||
# Copyright The OpenZipkin Authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
# This file uses the version 2 docker compose file format, described here: | ||
# https://docs.docker.com/compose/compose-file/#version-2 | ||
# | ||
# It extends the default configuration from docker-compose.yml to add a test | ||
# pulsar server, which is used as a span transport. | ||
|
||
version: '2.4' | ||
|
||
services: | ||
pulsar: | ||
image: ghcr.io/openzipkin/zipkin-pulsar:${TAG:-latest} | ||
container_name: pulsar | ||
ports: # expose the pulsar port so apps can publish spans. | ||
- "6650:6650" | ||
# - "8080:8080" # uncomment to expose the pulsar http port. | ||
|
||
zipkin: | ||
extends: | ||
file: docker-compose.yml | ||
service: zipkin | ||
# slim doesn't include Pulsar support, so switch to the larger image | ||
image: ghcr.io/openzipkin/zipkin:${TAG:-latest} | ||
environment: | ||
- PULSAR_SERVICE_URL=pulsar://pulsar:6650 | ||
depends_on: | ||
pulsar: | ||
condition: service_healthy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters