This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
65 lines (60 loc) · 1.48 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '3.7'
services:
jaeger:
image: johanneswuerbach/jaeger-s3
build:
context: .
target: jaeger-test
hostname: jaeger
environment:
- GRPC_STORAGE_PLUGIN_LOG_LEVEL=debug
- SPAN_STORAGE_TYPE=grpc-plugin
- GRPC_STORAGE_PLUGIN_BINARY=/go/bin/s3-plugin
- GRPC_STORAGE_PLUGIN_CONFIGURATION_FILE=/test-config.yml
- AWS_PROFILE
- AWS_REGION
volumes:
- ~/.aws:/root/.aws
- ./test-config.yml:/test-config.yml
ports:
- "6831:6831/udp"
- "16686:16686"
hotrod:
image: jaegertracing/example-hotrod:latest
ports:
- "8080:8080"
command: ["all"]
environment:
- JAEGER_AGENT_HOST=jaeger
- JAEGER_AGENT_PORT=6831
depends_on:
- jaeger
test:
build:
context: .
target: test
volumes:
- int-mod-cache:/go/pkg/mod
- int-build-cache:/root/.cache/go-build
test-jaeger-grpc-integration:
build:
context: .
target: jaeger-grpc-integration
environment:
- GRPC_STORAGE_PLUGIN_LOG_LEVEL=debug
- PLUGIN_BINARY_PATH=/go/bin/s3-plugin
- PLUGIN_CONFIG_PATH=/test-config.yml
- STORAGE=grpc-plugin
- AWS_PROFILE
- AWS_REGION
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_SESSION_TOKEN
volumes:
- ~/.aws:/root/.aws
- int-mod-cache:/go/pkg/mod
- int-build-cache:/root/.cache/go-build
- ./test-config.yml:/test-config.yml
volumes:
int-mod-cache:
int-build-cache: