-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 829 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 829 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
version: "3.8"
services:
erst:
build:
context: .
dockerfile: Dockerfile
platforms:
- linux/amd64
- linux/arm64
args:
VERSION: ${VERSION:-dev}
COMMIT_SHA: ${COMMIT_SHA:-unknown}
BUILD_DATE: ${BUILD_DATE:-unknown}
image: erst:local
container_name: erst
volumes:
- ./erst.example.toml:/app/erst.toml:ro
command: ["--help"]
restart: "no"
# Optional: Include Jaeger for tracing
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "16686:16686" # Jaeger UI
- "14268:14268" # Jaeger collector HTTP
- "4317:4317" # OTLP gRPC receiver
- "4318:4318" # OTLP HTTP receiver
environment:
- COLLECTOR_OTLP_ENABLED=true
command: ["--collector.otlp.enabled=true"]
profiles:
- tracing