update all

This commit is contained in:
2024-03-31 20:12:36 +02:00
parent 0a61199bd7
commit e64ae07eee
135 changed files with 9726 additions and 0 deletions

19
Jaeger/docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '3.8'
services:
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- '6831:6831/udp'
- '16686:16686'
hotrod:
image: jaegertracing/example-hotrod:latest
ports:
- '8082:8080'
command: ['all']
environment:
- JAEGER_AGENT_HOST=jaeger
# Note: if your application is using Node.js Jaeger Client, you need port 6832,
# unless issue https://github.com/jaegertracing/jaeger/issues/1596 is resolved.
- JAEGER_AGENT_PORT=6831
depends_on:
- jaeger