-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yaml
42 lines (41 loc) · 1.18 KB
/
docker-compose.yaml
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
version: '3.7'
services:
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14268:14268"
- "14250:14250"
- "9411:9411"
networks:
- goshuttle-tracing
go-shuttle-test:
# working_dir: "/go/pubsub"
image: ${IMAGE}
# entrypoint: ["ls"]
# command: ["-run", "TestConnectionString/TestPublishAndListenNotRenewingLock", "-tags", "debug"]
# command: ["-timeout", "6h" , "-run", "TestConnectionString/TestSoakPub"]
# command: ["-run", "TestConnectionString/TestCompleteCloseToLockExpiry", "-tags", "debug"]
command: ["-run", "TestConnectionString/TestPublishAndListenRenewLockPassedClaimValidity"]
env_file:
- .env
environment:
- TRACING=1
- JAEGER_AGENT_HOST=jaeger
- JAEGER_AGENT_PORT=6831
- JAEGER_ENDPOINT=http://jaeger:14268/api/traces
- JAEGER_SAMPLER_ENDPOINT=http://jaeger:5778/sampling
- JAEGER_SAMPLER_TYPE=const
- JAEGER_SAMPLER_PARAM=1
- JAEGER_SERVICE_NAME=go-shuttle-test
- DEBUG_LEVEL=3
networks:
- goshuttle-tracing
depends_on:
- jaeger
networks:
goshuttle-tracing: