Skip to content

Commit a7183f0

Browse files
committed
add jaeger container
1 parent 91b209a commit a7183f0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,19 @@ services:
3131
POSTGRES_PASSWORD: password
3232
POSTGRES_DB: db
3333
restart: always
34+
jaeger:
35+
image: jaegertracing/all-in-one:1.72.0
36+
container_name: jaeger
37+
environment:
38+
- SPAN_STORAGE_TYPE=elasticsearch
39+
- ES_SERVER_URLS=http://elasticsearch:9200
40+
- LOG_LEVEL=debug
41+
ports:
42+
- "16686:16686"
43+
- "4317:4317"
44+
- "4318:4318"
45+
- "5778:5778"
46+
- "9411:9411"
47+
depends_on:
48+
- elasticsearch
49+
restart: unless-stopped

0 commit comments

Comments
 (0)