-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (70 loc) · 1.52 KB
/
Copy pathdocker-compose.yml
File metadata and controls
75 lines (70 loc) · 1.52 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
services:
quickwit:
image: quickwit/quickwit:edge-slim-bookworm
pull_policy: always
ports:
- "7280:7280"
volumes:
- quickwit_data:/quickwit/qwdata
command: run
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7280/health/livez"]
interval: 5s
timeout: 5s
retries: 10
start_period: 10s
qwui-go:
build:
context: .
dockerfile: Dockerfile.go
pull_policy: build
ports:
- "8080:8080"
env_file: .env
environment:
- QUICKWIT_URL=http://quickwit:7280
- PORT=8080
depends_on:
quickwit:
condition: service_healthy
profiles:
- go
qwui-rust:
build:
context: .
dockerfile: Dockerfile.rust
pull_policy: build
ports:
- "8080:8080"
env_file: .env
environment:
- QUICKWIT_URL=http://quickwit:7280
- PORT=8080
depends_on:
quickwit:
condition: service_healthy
profiles:
- rust
data-generator:
image: python:3.12-alpine
depends_on:
quickwit:
condition: service_healthy
volumes:
- ./dev:/scripts
command: python /scripts/generate.py
restart: unless-stopped
trace-generator:
image: python:3.12-alpine
depends_on:
quickwit:
condition: service_healthy
volumes:
- ./dev:/scripts
environment:
- QUICKWIT_URL=http://quickwit:7280
- TRACE_RATE=3
command: python /scripts/generate-traces.py
restart: unless-stopped
volumes:
quickwit_data: