-
Notifications
You must be signed in to change notification settings - Fork 399
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 933 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (31 loc) · 933 Bytes
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
services:
oathkeeper:
build:
context: .
dockerfile: .docker/Dockerfile-build
ports:
- "4455:4455"
- "4456:4456"
command: serve --config=/etc/config/oathkeeper/config.yaml
# environment:
# - TRACING_PROVIDER=jaeger
# - TRACING_PROVIDERS_JAEGER_SAMPLING_SERVER_URL=http://jaeger:5778/sampling
# - TRACING_PROVIDERS_JAEGER_LOCAL_AGENT_ADDRESS=jaeger:6831
# - TRACING_PROVIDERS_JAEGER_SAMPLING_TYPE=const
# - TRACING_PROVIDERS_JAEGER_SAMPLING_VALUE=1
volumes:
- type: bind
source: ./.docker_compose
target: /etc/config/oathkeeper
restart: on-failure
jaeger:
image: jaegertracing/jaeger
ports:
- "16686:16686" # The UI port
# These are ports for collecting, sampling, agents, ...
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "14268:14268"
- "9411:9411"