-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.local-test.yaml
More file actions
38 lines (32 loc) · 1.03 KB
/
docker-compose.local-test.yaml
File metadata and controls
38 lines (32 loc) · 1.03 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
# =============================================================================
# Local E2E Test Docker Compose Override
# =============================================================================
# This override file is used specifically for e2e-local.go testing.
# It disables port conflicts and adds test-specific configuration.
#
# Usage:
# docker compose -f docker-compose.yaml -f docker-compose.local-test.yaml up -d
#
# =============================================================================
services:
# Override relayer environment
relayer:
environment:
LOG_LEVEL: debug
E2E_TEST_MODE: "true"
# Override api-server environment
api-server:
environment:
LOG_LEVEL: debug
E2E_TEST_MODE: "true"
# Override indexer environment
indexer:
environment:
LOG_LEVEL: debug
E2E_TEST_MODE: "true"
# Override postgres to skip persistent volume for clean test state
postgres:
# No persistent volume - fresh DB each run
tmpfs:
- /var/lib/postgresql/data
volumes: {}