-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
43 lines (40 loc) · 868 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
43 lines (40 loc) · 868 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
32
33
34
35
36
37
38
39
40
41
42
43
version: '3.8'
services:
service:
container_name: ds-service-template
image: ds-service
build:
context: .
dockerfile: ./Dockerfile
restart: always
ports:
- 8000:8000
env_file:
- .env
prometheus:
container_name: prometheus_instance
image: base_prometheus
build:
context: ./prometheus/
dockerfile: ./Dockerfile
ports:
- 9090:9090
jaeger:
container_name: jaeger_instance
image: jaegertracing/all-in-one:latest
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
- COLLECTOR_OTLP_ENABLED=true
- OTEL_EXPORTER_OTLP_ENDPOINT=http://jaeger:4317
ports:
- 5775:5775/udp
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 14268:14268
- 9411:9411
- 4317:4317
- 4318:4318
expose:
- 6831