Created
March 8, 2024 19:21
-
-
Save Aaronontheweb/107dfab75e4cb148d615d9036cadd3d2 to your computer and use it in GitHub Desktop.
Jaeger docker compose
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
version: '3.7' | |
services: | |
jaeger: | |
image: jaegertracing/all-in-one:1.55 | |
hostname: jaeger | |
restart: always | |
ports: | |
- '16686:16686' | |
- '5775:5775/udp' | |
- '6831:6831/udp' | |
- '6832:6832/udp' | |
- '5778:5778' | |
- '9411:9411' | |
- '4317:4317' | |
- '4318:4318' | |
- '14250:14250' | |
- '14268:14268' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment