-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
37 lines (36 loc) · 1.17 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
version: '3.4'
services:
jaeger2diag:
container_name: jaeger2diag
build:
context: ./jaeger2diag
ports:
- "3000:3000" #access to API (Swagger UI: http://localhost:3000)
environment:
JAEGER_HOST: jaeger
local:
image: ${DOCKER_REGISTRY-}local
build:
context: https://github.com/alexvaut/akka.opentracing.git
dockerfile: "src/Akka/OpenTracing/Samples/Cluster/Dockerfile"
environment:
JAEGER_SERVICE_NAME: akka
JAEGER_AGENT_HOST: jaeger
JAEGER_AGENT_PORT: 6831
JAEGER_SAMPLER_TYPE: const
JAEGER_SAMPLER_PARAM: 1
JAEGER_REPORTER_LOG_SPANS: "true"
jaeger:
container_name: jaeger
image: jaegertracing/all-in-one
ports:
- "16686:16686" #access to jaeger UI (http://localhost:16686)
- "6831:6831" #only for debugging
grafana:
container_name: grafana
build: ./grafana
environment:
- GF_USERS_ALLOW_SIGN_UP=true #only for testing
- GF_AUTH_ANONYMOUS_ENABLED=true #only for testing
ports:
- "3001:3000" #access to grafana dashboard (http://localhost:3001/d/mddcLWmWk/sequence-diagram-from-traces)