f9447f8e5f
CI / typecheck · build · test · bundle-size (push) Failing after 1s
CI / clean-room dependency closure smoke (push) Failing after 1s
CI / server-runtime e2e (docker · pg + valkey) (push) Failing after 2s
Deploy Install Scripts / deploy (push) Failing after 2s
Windows / build (push) Has been cancelled
24 lines
696 B
YAML
24 lines
696 B
YAML
# 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"]
|