-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.ci.yml
More file actions
58 lines (49 loc) · 1.58 KB
/
Copy pathdocker-compose.ci.yml
File metadata and controls
58 lines (49 loc) · 1.58 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
# CI override for system tests.
# Usage: bootstrap with .github/scripts/start-system-test-stack.sh
services:
# ── Use CI-built images ──────────────────────────────────────────
auth-api:
image: personal-stack/auth-api:ci
pull_policy: never
environment:
DB_PASSWORD: ci_auth_pass
OTEL_TRACES_EXPORTER: none
OTEL_EXPORTER_OTLP_ENDPOINT: ''
agents-api:
profiles: [disabled]
auth-ui:
image: personal-stack/auth-ui:ci
pull_policy: never
agents-ui:
profiles: [disabled]
app-ui:
image: personal-stack/app-ui:ci
pull_policy: never
stalwart-bootstrap:
image: personal-stack/stalwart-tools:ci
pull_policy: never
# ── CI-specific credentials ──────────────────────────────────────
postgres:
environment:
AUTH_DB_PASSWORD: ci_auth_pass
AGENTS_DB_PASSWORD: ci_agents_pass
N8N_DB_PASSWORD: ci_n8n_pass
# ── Disable OTEL on traefik (alloy is disabled) ─────────────────
traefik:
environment:
OTEL_TRACES_EXPORTER: none
# ── Disable services not needed for system tests ─────────────────
vault-oidc-init:
profiles: [bootstrap]
prometheus:
profiles: [disabled]
loki:
profiles: [disabled]
alloy:
profiles: [disabled]
tempo:
profiles: [disabled]
uptime-kuma:
profiles: [disabled]
uptime-kuma-init:
profiles: [disabled]