Files
zuul/doc/source/examples/tracing/docker-compose.yaml
James E. Blair b0b1bfb049 Use opendevmirror for container images
Due to rate limits imposed by dockerhub, use a quay.io mirror for
the container images that we use.

Change-Id: I44cfee0b32ca5657d1d4983dc5b63144229635ca
2025-01-15 00:51:48 +00:00

35 lines
866 B
YAML

# Start the quickstart tutorial with `docker-compose -p zuul-tutorial
# up` (as directed in the instructions) in order for the network to
# have the expected name so that it can be shared with Jaeger.
# Version 2.1 is required to specify the network name
version: '2.1'
services:
jaeger:
# This is a mirror of:
# image: docker.io/jaegertracing/all-in-one:1.58.1
image: quay.io/opendevmirror/jaegertracing-all-in-one:1.58.1
environment:
- COLLECTOR_OTLP_ENABLED=true
- SPAN_STORAGE_TYPE=badger
- BADGER_EPHEMERAL=false
- BADGER_DIRECTORY_VALUE=/badger/data
- BADGER_DIRECTORY_KEY=/badger/key
ports:
- "16686:16686"
- "4317:4317"
- "4318:4318"
volumes:
- "badger:/badger"
networks:
- zuul
volumes:
badger:
networks:
zuul:
external: true
name: zuul-tutorial_zuul