-
-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Expand file tree
/
Copy pathdocker-compose.e2e.yml
More file actions
23 lines (23 loc) · 696 Bytes
/
Copy pathdocker-compose.e2e.yml
File metadata and controls
23 lines (23 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Phase 10 — E2E driver overlay. Adds a one-shot Node container that hits
# the server HTTP service across the compose network. Pairs with
# scripts/e2e-server-docker.sh.
services:
server-e2e:
image: node:20-alpine
depends_on:
claude-mem-server:
condition: service_healthy
valkey:
condition: service_healthy
postgres:
condition: service_healthy
environment:
E2E_BASE_URL: http://claude-mem-server:37877
E2E_REDIS_HOST: valkey
E2E_REDIS_PORT: 6379
E2E_POSTGRES_HOST: postgres
E2E_POSTGRES_PORT: 5432
volumes:
- ./docker/e2e:/e2e:ro
working_dir: /e2e
command: ["node", "/e2e/server-e2e.mjs"]