update all
This commit is contained in:
19
Jaeger/docker-compose.yml
Normal file
19
Jaeger/docker-compose.yml
Normal 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
|
Reference in New Issue
Block a user