-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
46 lines (41 loc) · 1015 Bytes
/
docker-compose.yaml
File metadata and controls
46 lines (41 loc) · 1015 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
44
45
46
networks:
intemporal:
services:
jaeger:
image: jaegertracing/jaeger:2.12.0
command: [ --set=receivers.otlp.protocols.grpc.endpoint=0.0.0.0:4317 ]
networks:
- intemporal
ports:
- 16686:16686
- 4317
otel-collector:
image: otel/opentelemetry-collector-contrib:0.135.0
command: [ --config=/etc/otel.yml ]
volumes:
- ./docker/otel.yml:/etc/otel.yml
networks:
- intemporal
ports:
- 4317:4317
- 4318:4318
depends_on:
- jaeger
foundation:
image: "foundationdb/foundationdb:7.3.62"
environment:
FDB_NETWORKING_MODE: host
entrypoint: ["/usr/bin/tini", "-g", "--", "sh", "/fdb-init.bash"]
volumes:
- ./docker/fdb-init.bash:/fdb-init.bash
- ./docker/fdb.bash:/var/fdb/scripts/fdb.bash
- ./docker:/var/fdb/run:rw
ports:
- 4500:4500/tcp
postgresql:
image: postgres:16.2
environment:
POSTGRES_PASSWORD: root
POSTGRES_USER: root
ports:
- 5432:5432